@designliquido/delegua 1.18.5 → 1.19.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 +1 -1
- package/analisador-semantico/analisador-semantico-base.d.ts +3 -1
- package/analisador-semantico/analisador-semantico-base.d.ts.map +1 -1
- package/analisador-semantico/analisador-semantico-base.js +6 -0
- package/analisador-semantico/analisador-semantico-base.js.map +1 -1
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.d.ts +4 -1
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.d.ts.map +1 -1
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.js +54 -0
- package/analisador-semantico/dialetos/analisador-semantico-pitugues.js.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.d.ts +1 -0
- package/avaliador-sintatico/avaliador-sintatico.d.ts.map +1 -1
- package/avaliador-sintatico/avaliador-sintatico.js +25 -2
- package/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts +1 -0
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js +32 -4
- package/avaliador-sintatico/dialetos/avaliador-sintatico-pitugues.js.map +1 -1
- package/avaliador-sintatico/dialetos/micro-avaliador-sintatico-pitugues.d.ts.map +1 -1
- package/avaliador-sintatico/dialetos/micro-avaliador-sintatico-pitugues.js +6 -0
- package/avaliador-sintatico/dialetos/micro-avaliador-sintatico-pitugues.js.map +1 -1
- package/bibliotecas/biblioteca-global.d.ts.map +1 -1
- package/bibliotecas/biblioteca-global.js +6 -3
- package/bibliotecas/biblioteca-global.js.map +1 -1
- package/bin/package.json +1 -1
- package/construtos/bote.d.ts +13 -0
- package/construtos/bote.d.ts.map +1 -0
- package/construtos/bote.js +22 -0
- package/construtos/bote.js.map +1 -0
- package/construtos/index.d.ts +2 -0
- package/construtos/index.d.ts.map +1 -1
- package/construtos/index.js +2 -0
- package/construtos/index.js.map +1 -1
- package/construtos/morsa.d.ts +14 -0
- package/construtos/morsa.d.ts.map +1 -0
- package/construtos/morsa.js +22 -0
- package/construtos/morsa.js.map +1 -0
- package/formatadores/formatador-delegua.d.ts.map +1 -1
- package/formatadores/formatador-delegua.js.map +1 -1
- package/formatadores/formatador-pitugues.d.ts +5 -3
- package/formatadores/formatador-pitugues.d.ts.map +1 -1
- package/formatadores/formatador-pitugues.js +10 -0
- package/formatadores/formatador-pitugues.js.map +1 -1
- package/inferenciador.d.ts.map +1 -1
- package/inferenciador.js +5 -1
- package/inferenciador.js.map +1 -1
- package/interfaces/visitante-pitugues-interface.d.ts +7 -0
- package/interfaces/visitante-pitugues-interface.d.ts.map +1 -0
- package/interfaces/visitante-pitugues-interface.js +3 -0
- package/interfaces/visitante-pitugues-interface.js.map +1 -0
- package/interpretador/dialetos/pitugues/interpretador-pitugues.d.ts +3 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.d.ts.map +1 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js +28 -0
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js.map +1 -1
- package/interpretador/interpretador-base.js +1 -1
- package/interpretador/interpretador-base.js.map +1 -1
- package/lexador/dialetos/lexador-pitugues.d.ts.map +1 -1
- package/lexador/dialetos/lexador-pitugues.js +22 -4
- package/lexador/dialetos/lexador-pitugues.js.map +1 -1
- package/package.json +1 -1
- package/tipos-de-simbolos/pitugues.d.ts +3 -0
- package/tipos-de-simbolos/pitugues.d.ts.map +1 -1
- package/tipos-de-simbolos/pitugues.js +3 -0
- package/tipos-de-simbolos/pitugues.js.map +1 -1
- package/tradutores/tradutor-mermaidjs.d.ts +2 -1
- package/tradutores/tradutor-mermaidjs.d.ts.map +1 -1
- package/tradutores/tradutor-mermaidjs.js +5 -0
- package/tradutores/tradutor-mermaidjs.js.map +1 -1
- package/umd/delegua.js +621 -467
package/umd/delegua.js
CHANGED
|
@@ -473,10 +473,16 @@ class AnalisadorSemanticoBase {
|
|
|
473
473
|
visitarExpressaoVetor(expressao) {
|
|
474
474
|
return Promise.resolve();
|
|
475
475
|
}
|
|
476
|
+
visitarExpressaoMorsa(expressao) {
|
|
477
|
+
return Promise.resolve();
|
|
478
|
+
}
|
|
479
|
+
visitarExpressaoBote(expressao) {
|
|
480
|
+
return Promise.resolve();
|
|
481
|
+
}
|
|
476
482
|
}
|
|
477
483
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
478
484
|
|
|
479
|
-
},{"../construtos":
|
|
485
|
+
},{"../construtos":63,"../declaracoes":112,"../interfaces":153,"../quebras":221,"./gerenciador-escopos":5}],2:[function(require,module,exports){
|
|
480
486
|
"use strict";
|
|
481
487
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
482
488
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -1830,7 +1836,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1830
1836
|
}
|
|
1831
1837
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1832
1838
|
|
|
1833
|
-
},{"../avaliador-sintatico/comum":11,"../avaliador-sintatico/micro-avaliador-sintatico":24,"../construtos":
|
|
1839
|
+
},{"../avaliador-sintatico/comum":11,"../avaliador-sintatico/micro-avaliador-sintatico":24,"../construtos":63,"../declaracoes":112,"../interfaces/erros":150,"../lexador/micro-lexador":218,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1834
1840
|
"use strict";
|
|
1835
1841
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1836
1842
|
|
|
@@ -2248,7 +2254,7 @@ class AvaliadorSintaticoBase {
|
|
|
2248
2254
|
}
|
|
2249
2255
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
2250
2256
|
|
|
2251
|
-
},{"../construtos":
|
|
2257
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/comum":226,"./erro-avaliador-sintatico":20}],10:[function(require,module,exports){
|
|
2252
2258
|
"use strict";
|
|
2253
2259
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2254
2260
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3173,6 +3179,12 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3173
3179
|
return construtoChamada;
|
|
3174
3180
|
}
|
|
3175
3181
|
async unario() {
|
|
3182
|
+
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.INTERROGACAO)) {
|
|
3183
|
+
const operador = this.simbolos[this.atual - 1];
|
|
3184
|
+
const direito = await this.unario();
|
|
3185
|
+
this.erros.push(this.erro(operador, "O operador '?' deve ser precedido de uma condição para uso como operador ternário (ex: condição ? então : senão)."));
|
|
3186
|
+
return direito;
|
|
3187
|
+
}
|
|
3176
3188
|
if (this.verificarSeSimboloAtualEIgualA(delegua_2.default.NAO, delegua_2.default.NEGACAO, delegua_2.default.ADICAO, delegua_2.default.SUBTRACAO, delegua_2.default.BIT_NOT, delegua_2.default.INCREMENTAR, delegua_2.default.DECREMENTAR)) {
|
|
3177
3189
|
const operador = this.simbolos[this.atual - 1];
|
|
3178
3190
|
const direito = await this.unario();
|
|
@@ -3184,6 +3196,19 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3184
3196
|
}
|
|
3185
3197
|
return await this.chamar();
|
|
3186
3198
|
}
|
|
3199
|
+
verificarOperandosComparacao(operador, esquerda, direita) {
|
|
3200
|
+
if (esquerda instanceof construtos_1.Literal && direita instanceof construtos_1.Literal) {
|
|
3201
|
+
const tipoEsquerda = esquerda.tipo;
|
|
3202
|
+
const tipoDireita = direita.tipo;
|
|
3203
|
+
if (tipoEsquerda !== 'qualquer' &&
|
|
3204
|
+
tipoEsquerda !== 'nulo' &&
|
|
3205
|
+
tipoDireita !== 'qualquer' &&
|
|
3206
|
+
tipoDireita !== 'nulo' &&
|
|
3207
|
+
tipoEsquerda !== tipoDireita) {
|
|
3208
|
+
this.erros.push(this.erro(operador, `Operadores de comparação não podem ser usados com tipos diferentes. Tipos recebidos: '${tipoEsquerda}' e '${tipoDireita}'.`));
|
|
3209
|
+
}
|
|
3210
|
+
}
|
|
3211
|
+
}
|
|
3187
3212
|
verificarOperandoNegacao(operador, operando) {
|
|
3188
3213
|
if (operando instanceof construtos_1.Literal) {
|
|
3189
3214
|
if (operando.tipo !== 'lógico') {
|
|
@@ -3323,8 +3348,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3323
3348
|
let expressao = await this.bitOu();
|
|
3324
3349
|
while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.MAIOR, delegua_2.default.MAIOR_IGUAL, delegua_2.default.MENOR, delegua_2.default.MENOR_IGUAL)) {
|
|
3325
3350
|
const operador = this.simbolos[this.atual - 1];
|
|
3351
|
+
const esquerda = expressao;
|
|
3326
3352
|
const direito = await this.bitOu();
|
|
3327
|
-
|
|
3353
|
+
this.verificarOperandosComparacao(operador, esquerda, direito);
|
|
3354
|
+
expressao = new construtos_1.Binario(this.hashArquivo, esquerda, operador, direito);
|
|
3328
3355
|
}
|
|
3329
3356
|
return expressao;
|
|
3330
3357
|
}
|
|
@@ -3332,8 +3359,10 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3332
3359
|
let expressao = await this.comparar();
|
|
3333
3360
|
while (this.verificarSeSimboloAtualEIgualA(delegua_2.default.DIFERENTE, delegua_2.default.IGUAL_IGUAL)) {
|
|
3334
3361
|
const operador = this.simbolos[this.atual - 1];
|
|
3362
|
+
const esquerda = expressao;
|
|
3335
3363
|
const direito = await this.comparar();
|
|
3336
|
-
|
|
3364
|
+
this.verificarOperandosComparacao(operador, esquerda, direito);
|
|
3365
|
+
expressao = new construtos_1.Binario(this.hashArquivo, esquerda, operador, direito);
|
|
3337
3366
|
}
|
|
3338
3367
|
return expressao;
|
|
3339
3368
|
}
|
|
@@ -5338,7 +5367,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
5338
5367
|
}
|
|
5339
5368
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
5340
5369
|
|
|
5341
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":
|
|
5370
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":63,"../construtos/tuplas":82,"../declaracoes":112,"../inferenciador":141,"../informacao-elemento-sintatico":142,"../lexador/simbolo":220,"../tipos-de-dados/delegua":222,"../tipos-de-simbolos/delegua":227,"./avaliador-sintatico-base":9,"./comum":11,"./elemento-montao-tipos":19,"./erro-avaliador-sintatico":20,"./informacao-escopo":22,"./montao-tipos":25,"./pilha-escopos":26,"browser-process-hrtime":420}],11:[function(require,module,exports){
|
|
5342
5371
|
"use strict";
|
|
5343
5372
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5344
5373
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -5453,7 +5482,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
5453
5482
|
}
|
|
5454
5483
|
}
|
|
5455
5484
|
|
|
5456
|
-
},{"../declaracoes":
|
|
5485
|
+
},{"../declaracoes":112,"../informacao-elemento-sintatico":142}],12:[function(require,module,exports){
|
|
5457
5486
|
"use strict";
|
|
5458
5487
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5459
5488
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6113,7 +6142,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
6113
6142
|
}
|
|
6114
6143
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
6115
6144
|
|
|
6116
|
-
},{"../../construtos":
|
|
6145
|
+
},{"../../construtos":63,"../../declaracoes":112,"../../tipos-de-simbolos/egua-classico":228,"../erro-avaliador-sintatico":20}],13:[function(require,module,exports){
|
|
6117
6146
|
"use strict";
|
|
6118
6147
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6119
6148
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6667,6 +6696,9 @@ class AvaliadorSintaticoPitugues {
|
|
|
6667
6696
|
case pitugues_2.default.IDENTIFICADOR:
|
|
6668
6697
|
const simboloIdentificador = this.avancarEDevolverAnterior();
|
|
6669
6698
|
let tipoOperando;
|
|
6699
|
+
if (this.verificarTipoSimboloAtual(pitugues_2.default.MORSA)) {
|
|
6700
|
+
this.pilhaEscopos.definirInformacoesVariavel(simboloIdentificador.lexema, new informacao_elemento_sintatico_1.InformacaoElementoSintatico(simboloIdentificador.lexema, 'qualquer'));
|
|
6701
|
+
}
|
|
6670
6702
|
if (this.intuirTipoQualquerParaIdentificadores) {
|
|
6671
6703
|
// Esta indicação é utilizada para compreensões de lista, onde o
|
|
6672
6704
|
// tipo do identificador de iteração é 'qualquer' por definição.
|
|
@@ -6678,7 +6710,9 @@ class AvaliadorSintaticoPitugues {
|
|
|
6678
6710
|
}
|
|
6679
6711
|
else {
|
|
6680
6712
|
try {
|
|
6681
|
-
tipoOperando = this
|
|
6713
|
+
tipoOperando = this
|
|
6714
|
+
.pilhaEscopos
|
|
6715
|
+
.obterTipoVariavelPorNome(simboloIdentificador.lexema);
|
|
6682
6716
|
}
|
|
6683
6717
|
catch (erro) {
|
|
6684
6718
|
throw this.erro(simboloIdentificador, erro.message);
|
|
@@ -6781,6 +6815,12 @@ class AvaliadorSintaticoPitugues {
|
|
|
6781
6815
|
return expressao;
|
|
6782
6816
|
}
|
|
6783
6817
|
async unario() {
|
|
6818
|
+
if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.INTERROGACAO)) {
|
|
6819
|
+
const operador = this.simboloAnterior();
|
|
6820
|
+
const direito = await this.unario();
|
|
6821
|
+
this.erro(operador, "O símbolo '?' não é um operador válido em Pituguês.");
|
|
6822
|
+
return direito;
|
|
6823
|
+
}
|
|
6784
6824
|
if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.NEGACAO, pitugues_2.default.SUBTRACAO, pitugues_2.default.BIT_NOT)) {
|
|
6785
6825
|
const operador = this.simboloAnterior();
|
|
6786
6826
|
const direito = await this.unario();
|
|
@@ -6910,7 +6950,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
6910
6950
|
return expressaoEntao;
|
|
6911
6951
|
}
|
|
6912
6952
|
async tupla() {
|
|
6913
|
-
let expressao = await this.
|
|
6953
|
+
let expressao = await this.atribuir();
|
|
6914
6954
|
// Se não há vírgula, retorna a expressão simples
|
|
6915
6955
|
if (!this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA)) {
|
|
6916
6956
|
return expressao;
|
|
@@ -6921,12 +6961,29 @@ class AvaliadorSintaticoPitugues {
|
|
|
6921
6961
|
if (this.verificarTipoSimboloAtual(pitugues_2.default.PARENTESE_DIREITO)) {
|
|
6922
6962
|
break;
|
|
6923
6963
|
}
|
|
6924
|
-
elementos.push(await this.
|
|
6964
|
+
elementos.push(await this.atribuir());
|
|
6925
6965
|
} while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.VIRGULA));
|
|
6926
6966
|
return new construtos_1.TuplaN(this.hashArquivo, expressao.linha, elementos);
|
|
6927
6967
|
}
|
|
6968
|
+
async bote() {
|
|
6969
|
+
let expressao = await this.seTernario();
|
|
6970
|
+
while (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.BOTE)) {
|
|
6971
|
+
const operadorBote = this.simboloAnterior();
|
|
6972
|
+
const direita = await this.seTernario();
|
|
6973
|
+
expressao = new construtos_1.Bote(this.hashArquivo, Number(operadorBote.linha), expressao, direita);
|
|
6974
|
+
}
|
|
6975
|
+
return expressao;
|
|
6976
|
+
}
|
|
6928
6977
|
async atribuir() {
|
|
6929
|
-
const expressao = await this.
|
|
6978
|
+
const expressao = await this.bote();
|
|
6979
|
+
if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.MORSA)) {
|
|
6980
|
+
const operadorMorsa = this.simboloAnterior();
|
|
6981
|
+
const valor = await this.atribuir();
|
|
6982
|
+
if (expressao instanceof construtos_1.Variavel) {
|
|
6983
|
+
return new construtos_1.Morsa(this.hashArquivo, expressao, valor);
|
|
6984
|
+
}
|
|
6985
|
+
throw this.erro(operadorMorsa, 'Operador Morsa (:=) só pode ser usado para atribuir a variáveis.');
|
|
6986
|
+
}
|
|
6930
6987
|
if (this.verificarSeSimboloAtualEIgualA(pitugues_2.default.IGUAL, pitugues_2.default.MAIS_IGUAL, pitugues_2.default.MENOS_IGUAL, pitugues_2.default.MULTIPLICACAO_IGUAL, pitugues_2.default.DIVISAO_IGUAL)) {
|
|
6931
6988
|
const operadorAtribuicao = this.simboloAnterior();
|
|
6932
6989
|
const valor = await this.atribuir();
|
|
@@ -7854,7 +7911,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
7854
7911
|
}
|
|
7855
7912
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
7856
7913
|
|
|
7857
|
-
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":
|
|
7914
|
+
},{"../../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":63,"../../declaracoes":112,"../../inferenciador":141,"../../informacao-elemento-sintatico":142,"../../lexador":212,"../../lexador/micro-lexador-pitugues":217,"../../tipos-de-dados/dialetos/pitugues":223,"../../tipos-de-simbolos/pitugues":231,"../comum":11,"../erro-avaliador-sintatico":20,"../informacao-escopo":22,"../pilha-escopos":26,"./micro-avaliador-sintatico-pitugues":18,"browser-process-hrtime":420}],14:[function(require,module,exports){
|
|
7858
7915
|
"use strict";
|
|
7859
7916
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7860
7917
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8402,7 +8459,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
8402
8459
|
}
|
|
8403
8460
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
8404
8461
|
|
|
8405
|
-
},{"../../construtos":
|
|
8462
|
+
},{"../../construtos":63,"../../declaracoes":112,"../../lexador/simbolo":220,"../../tipos-de-simbolos/portugol-ipt":232,"../avaliador-sintatico-base":9}],15:[function(require,module,exports){
|
|
8406
8463
|
"use strict";
|
|
8407
8464
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8408
8465
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -9369,7 +9426,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
9369
9426
|
}
|
|
9370
9427
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
9371
9428
|
|
|
9372
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":
|
|
9429
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":63,"../../declaracoes":112,"../../inferenciador":141,"../../informacao-elemento-sintatico":142,"../../lexador":212,"../../tipos-de-simbolos/prisma":233,"../avaliador-sintatico-base":9,"../comum":11,"../erro-avaliador-sintatico":20,"../informacao-escopo":22,"../pilha-escopos":26,"browser-process-hrtime":420}],16:[function(require,module,exports){
|
|
9373
9430
|
"use strict";
|
|
9374
9431
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9375
9432
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -10381,7 +10438,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
10381
10438
|
}
|
|
10382
10439
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
10383
10440
|
|
|
10384
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":
|
|
10441
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":63,"../../construtos/tuplas":82,"../../declaracoes":112,"../../inferenciador":141,"../../informacao-elemento-sintatico":142,"../../lexador/simbolo":220,"../../tipos-de-dados/delegua":222,"../../tipos-de-simbolos/tenda":234,"../avaliador-sintatico-base":9,"./../erro-avaliador-sintatico":20,"./../informacao-escopo":22,"./../pilha-escopos":26,"browser-process-hrtime":420}],17:[function(require,module,exports){
|
|
10385
10442
|
"use strict";
|
|
10386
10443
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10387
10444
|
if (k2 === undefined) k2 = k;
|
|
@@ -10532,6 +10589,12 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
10532
10589
|
return expressao;
|
|
10533
10590
|
}
|
|
10534
10591
|
unario() {
|
|
10592
|
+
if (this.verificarSeSimboloAtualEIgualA(pitugues_1.default.INTERROGACAO)) {
|
|
10593
|
+
const operador = this.simbolos[this.atual - 1];
|
|
10594
|
+
const direito = this.unario();
|
|
10595
|
+
this.erro(operador, "O símbolo '?' não é um operador válido em Pituguês.");
|
|
10596
|
+
return direito;
|
|
10597
|
+
}
|
|
10535
10598
|
if (this.verificarSeSimboloAtualEIgualA(pitugues_1.default.NEGACAO, pitugues_1.default.SUBTRACAO, pitugues_1.default.BIT_NOT)) {
|
|
10536
10599
|
const operador = this.simbolos[this.atual - 1];
|
|
10537
10600
|
const direito = this.unario();
|
|
@@ -10644,7 +10707,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
10644
10707
|
}
|
|
10645
10708
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
10646
10709
|
|
|
10647
|
-
},{"../../construtos":
|
|
10710
|
+
},{"../../construtos":63,"../../declaracoes":112,"../../inferenciador":141,"../../tipos-de-simbolos/pitugues":231,"../micro-avaliador-sintatico-base":23}],19:[function(require,module,exports){
|
|
10648
10711
|
"use strict";
|
|
10649
10712
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10650
10713
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -10826,7 +10889,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
10826
10889
|
}
|
|
10827
10890
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
10828
10891
|
|
|
10829
|
-
},{"../construtos":
|
|
10892
|
+
},{"../construtos":63,"../tipos-de-simbolos/comum":226,"./erro-avaliador-sintatico":20}],24:[function(require,module,exports){
|
|
10830
10893
|
"use strict";
|
|
10831
10894
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
10832
10895
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -11059,7 +11122,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
11059
11122
|
}
|
|
11060
11123
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
11061
11124
|
|
|
11062
|
-
},{"../construtos":
|
|
11125
|
+
},{"../construtos":63,"../tipos-de-simbolos/microgramaticas/delegua":230,"./micro-avaliador-sintatico-base":23}],25:[function(require,module,exports){
|
|
11063
11126
|
"use strict";
|
|
11064
11127
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11065
11128
|
exports.MontaoTipos = void 0;
|
|
@@ -11110,7 +11173,7 @@ class MontaoTipos {
|
|
|
11110
11173
|
}
|
|
11111
11174
|
exports.MontaoTipos = MontaoTipos;
|
|
11112
11175
|
|
|
11113
|
-
},{"../geracao-identificadores":
|
|
11176
|
+
},{"../geracao-identificadores":139,"./erro-avaliador-sintatico":20}],26:[function(require,module,exports){
|
|
11114
11177
|
"use strict";
|
|
11115
11178
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11116
11179
|
exports.PilhaEscopos = void 0;
|
|
@@ -11560,12 +11623,15 @@ async function encontrar(interpretador, vetor, funcaoPesquisa) {
|
|
|
11560
11623
|
linha: interpretador.linhaDeclaracaoAtual,
|
|
11561
11624
|
}, 'Parâmetro inválido. O segundo parâmetro da função deve ser uma função.'));
|
|
11562
11625
|
}
|
|
11626
|
+
const resultados = [];
|
|
11563
11627
|
for (let indice = 0; indice < valorVetor.length; ++indice) {
|
|
11564
|
-
|
|
11565
|
-
|
|
11628
|
+
const resultado = await valorFuncaoPesquisa.chamar(interpretador, [valorVetor[indice]]);
|
|
11629
|
+
const valorResultado = resultado?.valorRetornado?.valor ?? resultado?.valor ?? resultado;
|
|
11630
|
+
if (valorResultado) {
|
|
11631
|
+
resultados.push(valorVetor[indice]);
|
|
11566
11632
|
}
|
|
11567
11633
|
}
|
|
11568
|
-
return null;
|
|
11634
|
+
return resultados.length > 0 ? resultados : null;
|
|
11569
11635
|
}
|
|
11570
11636
|
/**
|
|
11571
11637
|
* Encontra o índice do primeiro elemento de um vetor cuja função de pesquisa retorne
|
|
@@ -12352,7 +12418,7 @@ async function vetor(interpretador, tupla) {
|
|
|
12352
12418
|
return resultadoFinal;
|
|
12353
12419
|
}
|
|
12354
12420
|
|
|
12355
|
-
},{"../construtos":
|
|
12421
|
+
},{"../construtos":63,"../excecoes":135,"../interpretador/estruturas":183,"../interpretador/estruturas/descritor-tipo-classe":181,"../interpretador/estruturas/funcao-padrao":182,"../interpretador/estruturas/objeto-delegua-classe":188,"../quebras":221}],28:[function(require,module,exports){
|
|
12356
12422
|
"use strict";
|
|
12357
12423
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12358
12424
|
const excecoes_1 = require("../../../excecoes");
|
|
@@ -12375,7 +12441,7 @@ exports.default = {
|
|
|
12375
12441
|
},
|
|
12376
12442
|
};
|
|
12377
12443
|
|
|
12378
|
-
},{"../../../construtos":
|
|
12444
|
+
},{"../../../construtos":63,"../../../excecoes":135}],29:[function(require,module,exports){
|
|
12379
12445
|
"use strict";
|
|
12380
12446
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12381
12447
|
const construtos_1 = require("../construtos");
|
|
@@ -12488,7 +12554,7 @@ exports.default = {
|
|
|
12488
12554
|
},
|
|
12489
12555
|
};
|
|
12490
12556
|
|
|
12491
|
-
},{"../construtos":
|
|
12557
|
+
},{"../construtos":63,"../informacao-elemento-sintatico":142}],30:[function(require,module,exports){
|
|
12492
12558
|
"use strict";
|
|
12493
12559
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12494
12560
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -12573,7 +12639,7 @@ exports.default = {
|
|
|
12573
12639
|
},
|
|
12574
12640
|
};
|
|
12575
12641
|
|
|
12576
|
-
},{"../informacao-elemento-sintatico":
|
|
12642
|
+
},{"../informacao-elemento-sintatico":142}],31:[function(require,module,exports){
|
|
12577
12643
|
"use strict";
|
|
12578
12644
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12579
12645
|
exports.implementacaoParticao = void 0;
|
|
@@ -12972,7 +13038,7 @@ exports.default = {
|
|
|
12972
13038
|
},
|
|
12973
13039
|
};
|
|
12974
13040
|
|
|
12975
|
-
},{"../construtos":
|
|
13041
|
+
},{"../construtos":63,"../excecoes":135,"../informacao-elemento-sintatico":142}],32:[function(require,module,exports){
|
|
12976
13042
|
"use strict";
|
|
12977
13043
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12978
13044
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -13383,7 +13449,7 @@ exports.default = {
|
|
|
13383
13449
|
},
|
|
13384
13450
|
};
|
|
13385
13451
|
|
|
13386
|
-
},{"../construtos":
|
|
13452
|
+
},{"../construtos":63,"../excecoes":135,"../inferenciador":141,"../informacao-elemento-sintatico":142}],33:[function(require,module,exports){
|
|
13387
13453
|
"use strict";
|
|
13388
13454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13389
13455
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -13754,7 +13820,7 @@ class Atribuir {
|
|
|
13754
13820
|
}
|
|
13755
13821
|
exports.Atribuir = Atribuir;
|
|
13756
13822
|
|
|
13757
|
-
},{"./variavel":
|
|
13823
|
+
},{"./variavel":91}],45:[function(require,module,exports){
|
|
13758
13824
|
"use strict";
|
|
13759
13825
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13760
13826
|
exports.Binario = void 0;
|
|
@@ -13829,6 +13895,29 @@ exports.Binario = Binario;
|
|
|
13829
13895
|
},{}],46:[function(require,module,exports){
|
|
13830
13896
|
"use strict";
|
|
13831
13897
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13898
|
+
exports.Bote = void 0;
|
|
13899
|
+
class Bote {
|
|
13900
|
+
constructor(hashArquivo, linha, esquerda, direita) {
|
|
13901
|
+
this.linha = linha;
|
|
13902
|
+
this.hashArquivo = hashArquivo;
|
|
13903
|
+
this.esquerda = esquerda;
|
|
13904
|
+
this.direita = direita;
|
|
13905
|
+
}
|
|
13906
|
+
async aceitar(visitante) {
|
|
13907
|
+
return await visitante.visitarExpressaoBote(this);
|
|
13908
|
+
}
|
|
13909
|
+
paraTexto() {
|
|
13910
|
+
return `<bote />`;
|
|
13911
|
+
}
|
|
13912
|
+
paraTextoSaida() {
|
|
13913
|
+
throw new Error('Método não implementado.');
|
|
13914
|
+
}
|
|
13915
|
+
}
|
|
13916
|
+
exports.Bote = Bote;
|
|
13917
|
+
|
|
13918
|
+
},{}],47:[function(require,module,exports){
|
|
13919
|
+
"use strict";
|
|
13920
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13832
13921
|
exports.Chamada = void 0;
|
|
13833
13922
|
const geracao_identificadores_1 = require("../geracao-identificadores");
|
|
13834
13923
|
/**
|
|
@@ -13858,7 +13947,7 @@ class Chamada {
|
|
|
13858
13947
|
}
|
|
13859
13948
|
exports.Chamada = Chamada;
|
|
13860
13949
|
|
|
13861
|
-
},{"../geracao-identificadores":
|
|
13950
|
+
},{"../geracao-identificadores":139}],48:[function(require,module,exports){
|
|
13862
13951
|
"use strict";
|
|
13863
13952
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13864
13953
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -13885,7 +13974,7 @@ class ComentarioComoConstruto {
|
|
|
13885
13974
|
}
|
|
13886
13975
|
exports.ComentarioComoConstruto = ComentarioComoConstruto;
|
|
13887
13976
|
|
|
13888
|
-
},{}],
|
|
13977
|
+
},{}],49:[function(require,module,exports){
|
|
13889
13978
|
"use strict";
|
|
13890
13979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13891
13980
|
exports.ComponenteLinguagem = void 0;
|
|
@@ -13911,7 +14000,7 @@ class ComponenteLinguagem {
|
|
|
13911
14000
|
}
|
|
13912
14001
|
exports.ComponenteLinguagem = ComponenteLinguagem;
|
|
13913
14002
|
|
|
13914
|
-
},{}],
|
|
14003
|
+
},{}],50:[function(require,module,exports){
|
|
13915
14004
|
"use strict";
|
|
13916
14005
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13917
14006
|
exports.Constante = void 0;
|
|
@@ -13936,11 +14025,11 @@ class Constante {
|
|
|
13936
14025
|
}
|
|
13937
14026
|
exports.Constante = Constante;
|
|
13938
14027
|
|
|
13939
|
-
},{}],
|
|
14028
|
+
},{}],51:[function(require,module,exports){
|
|
13940
14029
|
"use strict";
|
|
13941
14030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13942
14031
|
|
|
13943
|
-
},{}],
|
|
14032
|
+
},{}],52:[function(require,module,exports){
|
|
13944
14033
|
"use strict";
|
|
13945
14034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13946
14035
|
exports.Decorador = void 0;
|
|
@@ -13981,7 +14070,7 @@ class Decorador {
|
|
|
13981
14070
|
}
|
|
13982
14071
|
exports.Decorador = Decorador;
|
|
13983
14072
|
|
|
13984
|
-
},{}],
|
|
14073
|
+
},{}],53:[function(require,module,exports){
|
|
13985
14074
|
"use strict";
|
|
13986
14075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13987
14076
|
exports.DefinirValor = void 0;
|
|
@@ -14005,7 +14094,7 @@ class DefinirValor {
|
|
|
14005
14094
|
}
|
|
14006
14095
|
exports.DefinirValor = DefinirValor;
|
|
14007
14096
|
|
|
14008
|
-
},{}],
|
|
14097
|
+
},{}],54:[function(require,module,exports){
|
|
14009
14098
|
"use strict";
|
|
14010
14099
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14011
14100
|
exports.Dicionario = void 0;
|
|
@@ -14030,7 +14119,7 @@ class Dicionario {
|
|
|
14030
14119
|
}
|
|
14031
14120
|
exports.Dicionario = Dicionario;
|
|
14032
14121
|
|
|
14033
|
-
},{}],
|
|
14122
|
+
},{}],55:[function(require,module,exports){
|
|
14034
14123
|
"use strict";
|
|
14035
14124
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14036
14125
|
exports.Elvis = void 0;
|
|
@@ -14055,7 +14144,7 @@ class Elvis {
|
|
|
14055
14144
|
}
|
|
14056
14145
|
exports.Elvis = Elvis;
|
|
14057
14146
|
|
|
14058
|
-
},{}],
|
|
14147
|
+
},{}],56:[function(require,module,exports){
|
|
14059
14148
|
"use strict";
|
|
14060
14149
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14061
14150
|
exports.EnquantoComoConstruto = void 0;
|
|
@@ -14078,7 +14167,7 @@ class EnquantoComoConstruto {
|
|
|
14078
14167
|
}
|
|
14079
14168
|
exports.EnquantoComoConstruto = EnquantoComoConstruto;
|
|
14080
14169
|
|
|
14081
|
-
},{}],
|
|
14170
|
+
},{}],57:[function(require,module,exports){
|
|
14082
14171
|
"use strict";
|
|
14083
14172
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14084
14173
|
exports.ExpressaoRegular = void 0;
|
|
@@ -14101,7 +14190,7 @@ class ExpressaoRegular {
|
|
|
14101
14190
|
}
|
|
14102
14191
|
exports.ExpressaoRegular = ExpressaoRegular;
|
|
14103
14192
|
|
|
14104
|
-
},{}],
|
|
14193
|
+
},{}],58:[function(require,module,exports){
|
|
14105
14194
|
"use strict";
|
|
14106
14195
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14107
14196
|
exports.FazerComoConstruto = void 0;
|
|
@@ -14124,7 +14213,7 @@ class FazerComoConstruto {
|
|
|
14124
14213
|
}
|
|
14125
14214
|
exports.FazerComoConstruto = FazerComoConstruto;
|
|
14126
14215
|
|
|
14127
|
-
},{}],
|
|
14216
|
+
},{}],59:[function(require,module,exports){
|
|
14128
14217
|
"use strict";
|
|
14129
14218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14130
14219
|
exports.FimPara = void 0;
|
|
@@ -14157,7 +14246,7 @@ class FimPara {
|
|
|
14157
14246
|
}
|
|
14158
14247
|
exports.FimPara = FimPara;
|
|
14159
14248
|
|
|
14160
|
-
},{}],
|
|
14249
|
+
},{}],60:[function(require,module,exports){
|
|
14161
14250
|
"use strict";
|
|
14162
14251
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14163
14252
|
exports.FormatacaoEscrita = void 0;
|
|
@@ -14186,7 +14275,7 @@ class FormatacaoEscrita {
|
|
|
14186
14275
|
}
|
|
14187
14276
|
exports.FormatacaoEscrita = FormatacaoEscrita;
|
|
14188
14277
|
|
|
14189
|
-
},{}],
|
|
14278
|
+
},{}],61:[function(require,module,exports){
|
|
14190
14279
|
"use strict";
|
|
14191
14280
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14192
14281
|
exports.FuncaoConstruto = void 0;
|
|
@@ -14224,7 +14313,7 @@ class FuncaoConstruto {
|
|
|
14224
14313
|
}
|
|
14225
14314
|
exports.FuncaoConstruto = FuncaoConstruto;
|
|
14226
14315
|
|
|
14227
|
-
},{}],
|
|
14316
|
+
},{}],62:[function(require,module,exports){
|
|
14228
14317
|
"use strict";
|
|
14229
14318
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14230
14319
|
exports.ImportarComoConstruto = void 0;
|
|
@@ -14250,7 +14339,7 @@ class ImportarComoConstruto {
|
|
|
14250
14339
|
}
|
|
14251
14340
|
exports.ImportarComoConstruto = ImportarComoConstruto;
|
|
14252
14341
|
|
|
14253
|
-
},{}],
|
|
14342
|
+
},{}],63:[function(require,module,exports){
|
|
14254
14343
|
"use strict";
|
|
14255
14344
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14256
14345
|
if (k2 === undefined) k2 = k;
|
|
@@ -14280,6 +14369,7 @@ __exportStar(require("./atribuicao-por-indice"), exports);
|
|
|
14280
14369
|
__exportStar(require("./atribuicao-por-indices-matriz"), exports);
|
|
14281
14370
|
__exportStar(require("./atribuir"), exports);
|
|
14282
14371
|
__exportStar(require("./binario"), exports);
|
|
14372
|
+
__exportStar(require("./bote"), exports);
|
|
14283
14373
|
__exportStar(require("./chamada"), exports);
|
|
14284
14374
|
__exportStar(require("./comentario-como-construto"), exports);
|
|
14285
14375
|
__exportStar(require("./componente-linguagem"), exports);
|
|
@@ -14301,6 +14391,7 @@ __exportStar(require("./leia"), exports);
|
|
|
14301
14391
|
__exportStar(require("./lista-compreensao"), exports);
|
|
14302
14392
|
__exportStar(require("./literal"), exports);
|
|
14303
14393
|
__exportStar(require("./logico"), exports);
|
|
14394
|
+
__exportStar(require("./morsa"), exports);
|
|
14304
14395
|
__exportStar(require("./para-cada-como-construto"), exports);
|
|
14305
14396
|
__exportStar(require("./para-como-construto"), exports);
|
|
14306
14397
|
__exportStar(require("./referencia-biblioteca-global"), exports);
|
|
@@ -14316,7 +14407,7 @@ __exportStar(require("./unario"), exports);
|
|
|
14316
14407
|
__exportStar(require("./variavel"), exports);
|
|
14317
14408
|
__exportStar(require("./vetor"), exports);
|
|
14318
14409
|
|
|
14319
|
-
},{"./acesso-elemento-matriz":33,"./acesso-indice-variavel":34,"./acesso-intervalo-variavel":35,"./acesso-metodo":37,"./acesso-metodo-ou-propriedade":36,"./acesso-propriedade":38,"./agrupamento":39,"./ajuda-como-construto":40,"./argumento-referencia-funcao":41,"./atribuicao-por-indice":42,"./atribuicao-por-indices-matriz":43,"./atribuir":44,"./binario":45,"./
|
|
14410
|
+
},{"./acesso-elemento-matriz":33,"./acesso-indice-variavel":34,"./acesso-intervalo-variavel":35,"./acesso-metodo":37,"./acesso-metodo-ou-propriedade":36,"./acesso-propriedade":38,"./agrupamento":39,"./ajuda-como-construto":40,"./argumento-referencia-funcao":41,"./atribuicao-por-indice":42,"./atribuicao-por-indices-matriz":43,"./atribuir":44,"./binario":45,"./bote":46,"./chamada":47,"./comentario-como-construto":48,"./componente-linguagem":49,"./constante":50,"./construto":51,"./decorador":52,"./definir-valor":53,"./dicionario":54,"./elvis":55,"./enquanto-como-construto":56,"./expressao-regular":57,"./fazer-como-construto":58,"./fim-para":59,"./formatacao-escrita":60,"./funcao":61,"./importar-como-construto":62,"./isto":64,"./leia":65,"./lista-compreensao":66,"./literal":67,"./logico":68,"./morsa":69,"./para-cada-como-construto":70,"./para-como-construto":71,"./referencia-biblioteca-global":72,"./referencia-funcao":73,"./se-ternario":74,"./separador":75,"./super":76,"./tipo-de":77,"./tupla":79,"./tupla-n":78,"./tuplas":82,"./unario":90,"./variavel":91,"./vetor":92}],64:[function(require,module,exports){
|
|
14320
14411
|
"use strict";
|
|
14321
14412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14322
14413
|
exports.Isto = void 0;
|
|
@@ -14339,7 +14430,7 @@ class Isto {
|
|
|
14339
14430
|
}
|
|
14340
14431
|
exports.Isto = Isto;
|
|
14341
14432
|
|
|
14342
|
-
},{}],
|
|
14433
|
+
},{}],65:[function(require,module,exports){
|
|
14343
14434
|
"use strict";
|
|
14344
14435
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14345
14436
|
exports.Leia = void 0;
|
|
@@ -14369,7 +14460,7 @@ class Leia {
|
|
|
14369
14460
|
}
|
|
14370
14461
|
exports.Leia = Leia;
|
|
14371
14462
|
|
|
14372
|
-
},{"../geracao-identificadores":
|
|
14463
|
+
},{"../geracao-identificadores":139}],66:[function(require,module,exports){
|
|
14373
14464
|
"use strict";
|
|
14374
14465
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14375
14466
|
exports.ListaCompreensao = void 0;
|
|
@@ -14394,7 +14485,7 @@ class ListaCompreensao {
|
|
|
14394
14485
|
}
|
|
14395
14486
|
exports.ListaCompreensao = ListaCompreensao;
|
|
14396
14487
|
|
|
14397
|
-
},{}],
|
|
14488
|
+
},{}],67:[function(require,module,exports){
|
|
14398
14489
|
"use strict";
|
|
14399
14490
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14400
14491
|
exports.Literal = void 0;
|
|
@@ -14425,7 +14516,7 @@ class Literal {
|
|
|
14425
14516
|
}
|
|
14426
14517
|
exports.Literal = Literal;
|
|
14427
14518
|
|
|
14428
|
-
},{}],
|
|
14519
|
+
},{}],68:[function(require,module,exports){
|
|
14429
14520
|
"use strict";
|
|
14430
14521
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14431
14522
|
exports.Logico = void 0;
|
|
@@ -14452,7 +14543,30 @@ class Logico {
|
|
|
14452
14543
|
}
|
|
14453
14544
|
exports.Logico = Logico;
|
|
14454
14545
|
|
|
14455
|
-
},{}],
|
|
14546
|
+
},{}],69:[function(require,module,exports){
|
|
14547
|
+
"use strict";
|
|
14548
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14549
|
+
exports.Morsa = void 0;
|
|
14550
|
+
class Morsa {
|
|
14551
|
+
constructor(hashArquivo, variavel, valor) {
|
|
14552
|
+
this.linha = Number(variavel.linha);
|
|
14553
|
+
this.hashArquivo = hashArquivo;
|
|
14554
|
+
this.variavel = variavel;
|
|
14555
|
+
this.valor = valor;
|
|
14556
|
+
}
|
|
14557
|
+
async aceitar(visitante) {
|
|
14558
|
+
return await visitante.visitarExpressaoMorsa(this);
|
|
14559
|
+
}
|
|
14560
|
+
paraTexto() {
|
|
14561
|
+
return `<morsa />`;
|
|
14562
|
+
}
|
|
14563
|
+
paraTextoSaida() {
|
|
14564
|
+
throw new Error('Método não implementado.');
|
|
14565
|
+
}
|
|
14566
|
+
}
|
|
14567
|
+
exports.Morsa = Morsa;
|
|
14568
|
+
|
|
14569
|
+
},{}],70:[function(require,module,exports){
|
|
14456
14570
|
"use strict";
|
|
14457
14571
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14458
14572
|
exports.ParaCadaComoConstruto = void 0;
|
|
@@ -14477,7 +14591,7 @@ class ParaCadaComoConstruto {
|
|
|
14477
14591
|
}
|
|
14478
14592
|
exports.ParaCadaComoConstruto = ParaCadaComoConstruto;
|
|
14479
14593
|
|
|
14480
|
-
},{}],
|
|
14594
|
+
},{}],71:[function(require,module,exports){
|
|
14481
14595
|
"use strict";
|
|
14482
14596
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14483
14597
|
exports.ParaComoConstruto = void 0;
|
|
@@ -14505,7 +14619,7 @@ class ParaComoConstruto {
|
|
|
14505
14619
|
}
|
|
14506
14620
|
exports.ParaComoConstruto = ParaComoConstruto;
|
|
14507
14621
|
|
|
14508
|
-
},{}],
|
|
14622
|
+
},{}],72:[function(require,module,exports){
|
|
14509
14623
|
"use strict";
|
|
14510
14624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14511
14625
|
exports.ReferenciaBibliotecaGlobal = void 0;
|
|
@@ -14531,7 +14645,7 @@ class ReferenciaBibliotecaGlobal {
|
|
|
14531
14645
|
}
|
|
14532
14646
|
exports.ReferenciaBibliotecaGlobal = ReferenciaBibliotecaGlobal;
|
|
14533
14647
|
|
|
14534
|
-
},{}],
|
|
14648
|
+
},{}],73:[function(require,module,exports){
|
|
14535
14649
|
"use strict";
|
|
14536
14650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14537
14651
|
exports.ReferenciaFuncao = void 0;
|
|
@@ -14555,7 +14669,7 @@ class ReferenciaFuncao {
|
|
|
14555
14669
|
}
|
|
14556
14670
|
exports.ReferenciaFuncao = ReferenciaFuncao;
|
|
14557
14671
|
|
|
14558
|
-
},{}],
|
|
14672
|
+
},{}],74:[function(require,module,exports){
|
|
14559
14673
|
"use strict";
|
|
14560
14674
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14561
14675
|
exports.SeTernario = void 0;
|
|
@@ -14580,7 +14694,7 @@ class SeTernario {
|
|
|
14580
14694
|
}
|
|
14581
14695
|
exports.SeTernario = SeTernario;
|
|
14582
14696
|
|
|
14583
|
-
},{}],
|
|
14697
|
+
},{}],75:[function(require,module,exports){
|
|
14584
14698
|
"use strict";
|
|
14585
14699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14586
14700
|
exports.Separador = void 0;
|
|
@@ -14602,7 +14716,7 @@ class Separador {
|
|
|
14602
14716
|
}
|
|
14603
14717
|
exports.Separador = Separador;
|
|
14604
14718
|
|
|
14605
|
-
},{}],
|
|
14719
|
+
},{}],76:[function(require,module,exports){
|
|
14606
14720
|
"use strict";
|
|
14607
14721
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14608
14722
|
exports.Super = void 0;
|
|
@@ -14625,7 +14739,7 @@ class Super {
|
|
|
14625
14739
|
}
|
|
14626
14740
|
exports.Super = Super;
|
|
14627
14741
|
|
|
14628
|
-
},{}],
|
|
14742
|
+
},{}],77:[function(require,module,exports){
|
|
14629
14743
|
"use strict";
|
|
14630
14744
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14631
14745
|
exports.TipoDe = void 0;
|
|
@@ -14652,7 +14766,7 @@ class TipoDe {
|
|
|
14652
14766
|
}
|
|
14653
14767
|
exports.TipoDe = TipoDe;
|
|
14654
14768
|
|
|
14655
|
-
},{}],
|
|
14769
|
+
},{}],78:[function(require,module,exports){
|
|
14656
14770
|
"use strict";
|
|
14657
14771
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14658
14772
|
exports.TuplaN = void 0;
|
|
@@ -14681,7 +14795,7 @@ class TuplaN extends tupla_1.Tupla {
|
|
|
14681
14795
|
}
|
|
14682
14796
|
exports.TuplaN = TuplaN;
|
|
14683
14797
|
|
|
14684
|
-
},{"./tupla":
|
|
14798
|
+
},{"./tupla":79}],79:[function(require,module,exports){
|
|
14685
14799
|
"use strict";
|
|
14686
14800
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14687
14801
|
exports.Tupla = void 0;
|
|
@@ -14692,7 +14806,7 @@ class Tupla {
|
|
|
14692
14806
|
}
|
|
14693
14807
|
exports.Tupla = Tupla;
|
|
14694
14808
|
|
|
14695
|
-
},{}],
|
|
14809
|
+
},{}],80:[function(require,module,exports){
|
|
14696
14810
|
"use strict";
|
|
14697
14811
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14698
14812
|
exports.Deceto = void 0;
|
|
@@ -14743,7 +14857,7 @@ class Deceto extends tupla_1.Tupla {
|
|
|
14743
14857
|
}
|
|
14744
14858
|
exports.Deceto = Deceto;
|
|
14745
14859
|
|
|
14746
|
-
},{"../tupla":
|
|
14860
|
+
},{"../tupla":79}],81:[function(require,module,exports){
|
|
14747
14861
|
"use strict";
|
|
14748
14862
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14749
14863
|
exports.Dupla = void 0;
|
|
@@ -14765,7 +14879,7 @@ class Dupla extends tupla_1.Tupla {
|
|
|
14765
14879
|
}
|
|
14766
14880
|
exports.Dupla = Dupla;
|
|
14767
14881
|
|
|
14768
|
-
},{"../tupla":
|
|
14882
|
+
},{"../tupla":79}],82:[function(require,module,exports){
|
|
14769
14883
|
"use strict";
|
|
14770
14884
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14771
14885
|
if (k2 === undefined) k2 = k;
|
|
@@ -14833,7 +14947,7 @@ class SeletorTuplas {
|
|
|
14833
14947
|
}
|
|
14834
14948
|
exports.SeletorTuplas = SeletorTuplas;
|
|
14835
14949
|
|
|
14836
|
-
},{"./deceto":
|
|
14950
|
+
},{"./deceto":80,"./dupla":81,"./noneto":83,"./octeto":84,"./quarteto":85,"./quinteto":86,"./septeto":87,"./sexteto":88,"./trio":89}],83:[function(require,module,exports){
|
|
14837
14951
|
"use strict";
|
|
14838
14952
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14839
14953
|
exports.Noneto = void 0;
|
|
@@ -14875,7 +14989,7 @@ class Noneto extends tupla_1.Tupla {
|
|
|
14875
14989
|
}
|
|
14876
14990
|
exports.Noneto = Noneto;
|
|
14877
14991
|
|
|
14878
|
-
},{"../tupla":
|
|
14992
|
+
},{"../tupla":79}],84:[function(require,module,exports){
|
|
14879
14993
|
"use strict";
|
|
14880
14994
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14881
14995
|
exports.Octeto = void 0;
|
|
@@ -14915,7 +15029,7 @@ class Octeto extends tupla_1.Tupla {
|
|
|
14915
15029
|
}
|
|
14916
15030
|
exports.Octeto = Octeto;
|
|
14917
15031
|
|
|
14918
|
-
},{"../tupla":
|
|
15032
|
+
},{"../tupla":79}],85:[function(require,module,exports){
|
|
14919
15033
|
"use strict";
|
|
14920
15034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14921
15035
|
exports.Quarteto = void 0;
|
|
@@ -14941,7 +15055,7 @@ class Quarteto extends tupla_1.Tupla {
|
|
|
14941
15055
|
}
|
|
14942
15056
|
exports.Quarteto = Quarteto;
|
|
14943
15057
|
|
|
14944
|
-
},{"../tupla":
|
|
15058
|
+
},{"../tupla":79}],86:[function(require,module,exports){
|
|
14945
15059
|
"use strict";
|
|
14946
15060
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14947
15061
|
exports.Quinteto = void 0;
|
|
@@ -14969,7 +15083,7 @@ class Quinteto extends tupla_1.Tupla {
|
|
|
14969
15083
|
}
|
|
14970
15084
|
exports.Quinteto = Quinteto;
|
|
14971
15085
|
|
|
14972
|
-
},{"../tupla":
|
|
15086
|
+
},{"../tupla":79}],87:[function(require,module,exports){
|
|
14973
15087
|
"use strict";
|
|
14974
15088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14975
15089
|
exports.Septeto = void 0;
|
|
@@ -15007,7 +15121,7 @@ class Septeto extends tupla_1.Tupla {
|
|
|
15007
15121
|
}
|
|
15008
15122
|
exports.Septeto = Septeto;
|
|
15009
15123
|
|
|
15010
|
-
},{"../tupla":
|
|
15124
|
+
},{"../tupla":79}],88:[function(require,module,exports){
|
|
15011
15125
|
"use strict";
|
|
15012
15126
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15013
15127
|
exports.Sexteto = void 0;
|
|
@@ -15037,7 +15151,7 @@ class Sexteto extends tupla_1.Tupla {
|
|
|
15037
15151
|
}
|
|
15038
15152
|
exports.Sexteto = Sexteto;
|
|
15039
15153
|
|
|
15040
|
-
},{"../tupla":
|
|
15154
|
+
},{"../tupla":79}],89:[function(require,module,exports){
|
|
15041
15155
|
"use strict";
|
|
15042
15156
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15043
15157
|
exports.Trio = void 0;
|
|
@@ -15061,7 +15175,7 @@ class Trio extends tupla_1.Tupla {
|
|
|
15061
15175
|
}
|
|
15062
15176
|
exports.Trio = Trio;
|
|
15063
15177
|
|
|
15064
|
-
},{"../tupla":
|
|
15178
|
+
},{"../tupla":79}],90:[function(require,module,exports){
|
|
15065
15179
|
"use strict";
|
|
15066
15180
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15067
15181
|
exports.Unario = void 0;
|
|
@@ -15087,7 +15201,7 @@ class Unario {
|
|
|
15087
15201
|
}
|
|
15088
15202
|
exports.Unario = Unario;
|
|
15089
15203
|
|
|
15090
|
-
},{}],
|
|
15204
|
+
},{}],91:[function(require,module,exports){
|
|
15091
15205
|
"use strict";
|
|
15092
15206
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15093
15207
|
exports.Variavel = void 0;
|
|
@@ -15110,7 +15224,7 @@ class Variavel {
|
|
|
15110
15224
|
}
|
|
15111
15225
|
exports.Variavel = Variavel;
|
|
15112
15226
|
|
|
15113
|
-
},{}],
|
|
15227
|
+
},{}],92:[function(require,module,exports){
|
|
15114
15228
|
"use strict";
|
|
15115
15229
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15116
15230
|
exports.Vetor = void 0;
|
|
@@ -15145,7 +15259,7 @@ class Vetor {
|
|
|
15145
15259
|
}
|
|
15146
15260
|
exports.Vetor = Vetor;
|
|
15147
15261
|
|
|
15148
|
-
},{"./comentario-como-construto":
|
|
15262
|
+
},{"./comentario-como-construto":48,"./separador":75}],93:[function(require,module,exports){
|
|
15149
15263
|
"use strict";
|
|
15150
15264
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15151
15265
|
exports.Ajuda = void 0;
|
|
@@ -15174,7 +15288,7 @@ class Ajuda extends declaracao_1.Declaracao {
|
|
|
15174
15288
|
}
|
|
15175
15289
|
exports.Ajuda = Ajuda;
|
|
15176
15290
|
|
|
15177
|
-
},{"./declaracao":
|
|
15291
|
+
},{"./declaracao":101}],94:[function(require,module,exports){
|
|
15178
15292
|
"use strict";
|
|
15179
15293
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15180
15294
|
exports.Bloco = void 0;
|
|
@@ -15200,7 +15314,7 @@ class Bloco extends declaracao_1.Declaracao {
|
|
|
15200
15314
|
}
|
|
15201
15315
|
exports.Bloco = Bloco;
|
|
15202
15316
|
|
|
15203
|
-
},{"./declaracao":
|
|
15317
|
+
},{"./declaracao":101}],95:[function(require,module,exports){
|
|
15204
15318
|
"use strict";
|
|
15205
15319
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15206
15320
|
exports.CabecalhoPrograma = void 0;
|
|
@@ -15222,7 +15336,7 @@ class CabecalhoPrograma extends declaracao_1.Declaracao {
|
|
|
15222
15336
|
}
|
|
15223
15337
|
exports.CabecalhoPrograma = CabecalhoPrograma;
|
|
15224
15338
|
|
|
15225
|
-
},{"./declaracao":
|
|
15339
|
+
},{"./declaracao":101}],96:[function(require,module,exports){
|
|
15226
15340
|
"use strict";
|
|
15227
15341
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15228
15342
|
exports.Classe = void 0;
|
|
@@ -15269,7 +15383,7 @@ class Classe extends declaracao_1.Declaracao {
|
|
|
15269
15383
|
}
|
|
15270
15384
|
exports.Classe = Classe;
|
|
15271
15385
|
|
|
15272
|
-
},{"./declaracao":
|
|
15386
|
+
},{"./declaracao":101}],97:[function(require,module,exports){
|
|
15273
15387
|
"use strict";
|
|
15274
15388
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15275
15389
|
exports.Comentario = void 0;
|
|
@@ -15294,7 +15408,7 @@ class Comentario extends declaracao_1.Declaracao {
|
|
|
15294
15408
|
}
|
|
15295
15409
|
exports.Comentario = Comentario;
|
|
15296
15410
|
|
|
15297
|
-
},{"./declaracao":
|
|
15411
|
+
},{"./declaracao":101}],98:[function(require,module,exports){
|
|
15298
15412
|
"use strict";
|
|
15299
15413
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15300
15414
|
exports.ConstMultiplo = void 0;
|
|
@@ -15319,7 +15433,7 @@ class ConstMultiplo extends declaracao_1.Declaracao {
|
|
|
15319
15433
|
}
|
|
15320
15434
|
exports.ConstMultiplo = ConstMultiplo;
|
|
15321
15435
|
|
|
15322
|
-
},{"./declaracao":
|
|
15436
|
+
},{"./declaracao":101}],99:[function(require,module,exports){
|
|
15323
15437
|
"use strict";
|
|
15324
15438
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15325
15439
|
exports.Const = void 0;
|
|
@@ -15349,7 +15463,7 @@ class Const extends declaracao_1.Declaracao {
|
|
|
15349
15463
|
}
|
|
15350
15464
|
exports.Const = Const;
|
|
15351
15465
|
|
|
15352
|
-
},{"./declaracao":
|
|
15466
|
+
},{"./declaracao":101}],100:[function(require,module,exports){
|
|
15353
15467
|
"use strict";
|
|
15354
15468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15355
15469
|
exports.Continua = void 0;
|
|
@@ -15367,7 +15481,7 @@ class Continua extends declaracao_1.Declaracao {
|
|
|
15367
15481
|
}
|
|
15368
15482
|
exports.Continua = Continua;
|
|
15369
15483
|
|
|
15370
|
-
},{"./declaracao":
|
|
15484
|
+
},{"./declaracao":101}],101:[function(require,module,exports){
|
|
15371
15485
|
"use strict";
|
|
15372
15486
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15373
15487
|
exports.Declaracao = void 0;
|
|
@@ -15390,7 +15504,7 @@ class Declaracao {
|
|
|
15390
15504
|
}
|
|
15391
15505
|
exports.Declaracao = Declaracao;
|
|
15392
15506
|
|
|
15393
|
-
},{}],
|
|
15507
|
+
},{}],102:[function(require,module,exports){
|
|
15394
15508
|
"use strict";
|
|
15395
15509
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15396
15510
|
exports.Enquanto = void 0;
|
|
@@ -15411,7 +15525,7 @@ class Enquanto extends declaracao_1.Declaracao {
|
|
|
15411
15525
|
}
|
|
15412
15526
|
exports.Enquanto = Enquanto;
|
|
15413
15527
|
|
|
15414
|
-
},{"./declaracao":
|
|
15528
|
+
},{"./declaracao":101}],103:[function(require,module,exports){
|
|
15415
15529
|
"use strict";
|
|
15416
15530
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15417
15531
|
exports.Escolha = void 0;
|
|
@@ -15436,7 +15550,7 @@ class Escolha extends declaracao_1.Declaracao {
|
|
|
15436
15550
|
}
|
|
15437
15551
|
exports.Escolha = Escolha;
|
|
15438
15552
|
|
|
15439
|
-
},{"./declaracao":
|
|
15553
|
+
},{"./declaracao":101}],104:[function(require,module,exports){
|
|
15440
15554
|
"use strict";
|
|
15441
15555
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15442
15556
|
exports.EscrevaMesmaLinha = void 0;
|
|
@@ -15455,7 +15569,7 @@ class EscrevaMesmaLinha extends declaracao_1.Declaracao {
|
|
|
15455
15569
|
}
|
|
15456
15570
|
exports.EscrevaMesmaLinha = EscrevaMesmaLinha;
|
|
15457
15571
|
|
|
15458
|
-
},{"./declaracao":
|
|
15572
|
+
},{"./declaracao":101}],105:[function(require,module,exports){
|
|
15459
15573
|
"use strict";
|
|
15460
15574
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15461
15575
|
exports.Escreva = void 0;
|
|
@@ -15474,7 +15588,7 @@ class Escreva extends declaracao_1.Declaracao {
|
|
|
15474
15588
|
}
|
|
15475
15589
|
exports.Escreva = Escreva;
|
|
15476
15590
|
|
|
15477
|
-
},{"./declaracao":
|
|
15591
|
+
},{"./declaracao":101}],106:[function(require,module,exports){
|
|
15478
15592
|
"use strict";
|
|
15479
15593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15480
15594
|
exports.Expressao = void 0;
|
|
@@ -15493,7 +15607,7 @@ class Expressao extends declaracao_1.Declaracao {
|
|
|
15493
15607
|
}
|
|
15494
15608
|
exports.Expressao = Expressao;
|
|
15495
15609
|
|
|
15496
|
-
},{"./declaracao":
|
|
15610
|
+
},{"./declaracao":101}],107:[function(require,module,exports){
|
|
15497
15611
|
"use strict";
|
|
15498
15612
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15499
15613
|
exports.Extensao = void 0;
|
|
@@ -15523,7 +15637,7 @@ class Extensao extends declaracao_1.Declaracao {
|
|
|
15523
15637
|
}
|
|
15524
15638
|
exports.Extensao = Extensao;
|
|
15525
15639
|
|
|
15526
|
-
},{"./declaracao":
|
|
15640
|
+
},{"./declaracao":101}],108:[function(require,module,exports){
|
|
15527
15641
|
"use strict";
|
|
15528
15642
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15529
15643
|
exports.Falhar = void 0;
|
|
@@ -15543,7 +15657,7 @@ class Falhar extends declaracao_1.Declaracao {
|
|
|
15543
15657
|
}
|
|
15544
15658
|
exports.Falhar = Falhar;
|
|
15545
15659
|
|
|
15546
|
-
},{"./declaracao":
|
|
15660
|
+
},{"./declaracao":101}],109:[function(require,module,exports){
|
|
15547
15661
|
"use strict";
|
|
15548
15662
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15549
15663
|
exports.Fazer = void 0;
|
|
@@ -15564,7 +15678,7 @@ class Fazer extends declaracao_1.Declaracao {
|
|
|
15564
15678
|
}
|
|
15565
15679
|
exports.Fazer = Fazer;
|
|
15566
15680
|
|
|
15567
|
-
},{"./declaracao":
|
|
15681
|
+
},{"./declaracao":101}],110:[function(require,module,exports){
|
|
15568
15682
|
"use strict";
|
|
15569
15683
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15570
15684
|
exports.FuncaoDeclaracao = void 0;
|
|
@@ -15598,7 +15712,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
15598
15712
|
}
|
|
15599
15713
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
15600
15714
|
|
|
15601
|
-
},{"../geracao-identificadores":
|
|
15715
|
+
},{"../geracao-identificadores":139,"./declaracao":101}],111:[function(require,module,exports){
|
|
15602
15716
|
"use strict";
|
|
15603
15717
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15604
15718
|
exports.Importar = void 0;
|
|
@@ -15624,7 +15738,7 @@ class Importar extends declaracao_1.Declaracao {
|
|
|
15624
15738
|
}
|
|
15625
15739
|
exports.Importar = Importar;
|
|
15626
15740
|
|
|
15627
|
-
},{"./declaracao":
|
|
15741
|
+
},{"./declaracao":101}],112:[function(require,module,exports){
|
|
15628
15742
|
"use strict";
|
|
15629
15743
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15630
15744
|
if (k2 === undefined) k2 = k;
|
|
@@ -15675,7 +15789,7 @@ __exportStar(require("./texto-documentacao"), exports);
|
|
|
15675
15789
|
__exportStar(require("./var"), exports);
|
|
15676
15790
|
__exportStar(require("./var-multiplo"), exports);
|
|
15677
15791
|
|
|
15678
|
-
},{"./ajuda":
|
|
15792
|
+
},{"./ajuda":93,"./bloco":94,"./cabecalho-programa":95,"./classe":96,"./comentario":97,"./const":99,"./const-multiplo":98,"./continua":100,"./declaracao":101,"./enquanto":102,"./escolha":103,"./escreva":105,"./escreva-mesma-linha":104,"./expressao":106,"./extensao":107,"./falhar":108,"./fazer":109,"./funcao":110,"./importar":111,"./inicio-algoritmo":113,"./interface":114,"./para":116,"./para-cada":115,"./propriedade-classe":117,"./retorna":118,"./se":119,"./sustar":120,"./tendo-como":121,"./tente":122,"./texto-documentacao":123,"./var":125,"./var-multiplo":124}],113:[function(require,module,exports){
|
|
15679
15793
|
"use strict";
|
|
15680
15794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15681
15795
|
exports.InicioAlgoritmo = void 0;
|
|
@@ -15695,7 +15809,7 @@ class InicioAlgoritmo extends declaracao_1.Declaracao {
|
|
|
15695
15809
|
}
|
|
15696
15810
|
exports.InicioAlgoritmo = InicioAlgoritmo;
|
|
15697
15811
|
|
|
15698
|
-
},{"./declaracao":
|
|
15812
|
+
},{"./declaracao":101}],114:[function(require,module,exports){
|
|
15699
15813
|
"use strict";
|
|
15700
15814
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15701
15815
|
exports.InterfaceDeclaracao = exports.AssinaturaMetodo = void 0;
|
|
@@ -15741,7 +15855,7 @@ class InterfaceDeclaracao extends declaracao_1.Declaracao {
|
|
|
15741
15855
|
}
|
|
15742
15856
|
exports.InterfaceDeclaracao = InterfaceDeclaracao;
|
|
15743
15857
|
|
|
15744
|
-
},{"./declaracao":
|
|
15858
|
+
},{"./declaracao":101}],115:[function(require,module,exports){
|
|
15745
15859
|
"use strict";
|
|
15746
15860
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15747
15861
|
exports.ParaCada = void 0;
|
|
@@ -15764,7 +15878,7 @@ class ParaCada extends declaracao_1.Declaracao {
|
|
|
15764
15878
|
}
|
|
15765
15879
|
exports.ParaCada = ParaCada;
|
|
15766
15880
|
|
|
15767
|
-
},{"./declaracao":
|
|
15881
|
+
},{"./declaracao":101}],116:[function(require,module,exports){
|
|
15768
15882
|
"use strict";
|
|
15769
15883
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15770
15884
|
exports.Para = void 0;
|
|
@@ -15801,7 +15915,7 @@ class Para extends declaracao_1.Declaracao {
|
|
|
15801
15915
|
}
|
|
15802
15916
|
exports.Para = Para;
|
|
15803
15917
|
|
|
15804
|
-
},{"./declaracao":
|
|
15918
|
+
},{"./declaracao":101}],117:[function(require,module,exports){
|
|
15805
15919
|
"use strict";
|
|
15806
15920
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15807
15921
|
exports.PropriedadeClasse = void 0;
|
|
@@ -15827,7 +15941,7 @@ class PropriedadeClasse extends declaracao_1.Declaracao {
|
|
|
15827
15941
|
}
|
|
15828
15942
|
exports.PropriedadeClasse = PropriedadeClasse;
|
|
15829
15943
|
|
|
15830
|
-
},{"./declaracao":
|
|
15944
|
+
},{"./declaracao":101}],118:[function(require,module,exports){
|
|
15831
15945
|
"use strict";
|
|
15832
15946
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15833
15947
|
exports.Retorna = void 0;
|
|
@@ -15853,7 +15967,7 @@ class Retorna extends declaracao_1.Declaracao {
|
|
|
15853
15967
|
}
|
|
15854
15968
|
exports.Retorna = Retorna;
|
|
15855
15969
|
|
|
15856
|
-
},{"./declaracao":
|
|
15970
|
+
},{"./declaracao":101}],119:[function(require,module,exports){
|
|
15857
15971
|
"use strict";
|
|
15858
15972
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15859
15973
|
exports.Se = void 0;
|
|
@@ -15876,7 +15990,7 @@ class Se extends declaracao_1.Declaracao {
|
|
|
15876
15990
|
}
|
|
15877
15991
|
exports.Se = Se;
|
|
15878
15992
|
|
|
15879
|
-
},{"./declaracao":
|
|
15993
|
+
},{"./declaracao":101}],120:[function(require,module,exports){
|
|
15880
15994
|
"use strict";
|
|
15881
15995
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15882
15996
|
exports.Sustar = void 0;
|
|
@@ -15894,7 +16008,7 @@ class Sustar extends declaracao_1.Declaracao {
|
|
|
15894
16008
|
}
|
|
15895
16009
|
exports.Sustar = Sustar;
|
|
15896
16010
|
|
|
15897
|
-
},{"./declaracao":
|
|
16011
|
+
},{"./declaracao":101}],121:[function(require,module,exports){
|
|
15898
16012
|
"use strict";
|
|
15899
16013
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15900
16014
|
exports.TendoComo = void 0;
|
|
@@ -15921,7 +16035,7 @@ class TendoComo extends declaracao_1.Declaracao {
|
|
|
15921
16035
|
}
|
|
15922
16036
|
exports.TendoComo = TendoComo;
|
|
15923
16037
|
|
|
15924
|
-
},{"./declaracao":
|
|
16038
|
+
},{"./declaracao":101}],122:[function(require,module,exports){
|
|
15925
16039
|
"use strict";
|
|
15926
16040
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15927
16041
|
exports.Tente = void 0;
|
|
@@ -15947,7 +16061,7 @@ class Tente extends declaracao_1.Declaracao {
|
|
|
15947
16061
|
}
|
|
15948
16062
|
exports.Tente = Tente;
|
|
15949
16063
|
|
|
15950
|
-
},{"./declaracao":
|
|
16064
|
+
},{"./declaracao":101}],123:[function(require,module,exports){
|
|
15951
16065
|
"use strict";
|
|
15952
16066
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15953
16067
|
exports.TextoDocumentacao = void 0;
|
|
@@ -15969,7 +16083,7 @@ class TextoDocumentacao extends declaracao_1.Declaracao {
|
|
|
15969
16083
|
}
|
|
15970
16084
|
exports.TextoDocumentacao = TextoDocumentacao;
|
|
15971
16085
|
|
|
15972
|
-
},{"./declaracao":
|
|
16086
|
+
},{"./declaracao":101}],124:[function(require,module,exports){
|
|
15973
16087
|
"use strict";
|
|
15974
16088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15975
16089
|
exports.VarMultiplo = void 0;
|
|
@@ -15995,7 +16109,7 @@ class VarMultiplo extends declaracao_1.Declaracao {
|
|
|
15995
16109
|
}
|
|
15996
16110
|
exports.VarMultiplo = VarMultiplo;
|
|
15997
16111
|
|
|
15998
|
-
},{"./declaracao":
|
|
16112
|
+
},{"./declaracao":101}],125:[function(require,module,exports){
|
|
15999
16113
|
"use strict";
|
|
16000
16114
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16001
16115
|
exports.Var = void 0;
|
|
@@ -16030,7 +16144,7 @@ class Var extends declaracao_1.Declaracao {
|
|
|
16030
16144
|
}
|
|
16031
16145
|
exports.Var = Var;
|
|
16032
16146
|
|
|
16033
|
-
},{"./declaracao":
|
|
16147
|
+
},{"./declaracao":101}],126:[function(require,module,exports){
|
|
16034
16148
|
"use strict";
|
|
16035
16149
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16036
16150
|
exports.EstilizadorDelegua = void 0;
|
|
@@ -16279,7 +16393,7 @@ class EstilizadorDelegua {
|
|
|
16279
16393
|
}
|
|
16280
16394
|
exports.EstilizadorDelegua = EstilizadorDelegua;
|
|
16281
16395
|
|
|
16282
|
-
},{"../formatadores":
|
|
16396
|
+
},{"../formatadores":138,"./quebrador-linha":128}],127:[function(require,module,exports){
|
|
16283
16397
|
"use strict";
|
|
16284
16398
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16285
16399
|
if (k2 === undefined) k2 = k;
|
|
@@ -16300,7 +16414,7 @@ __exportStar(require("./estilizador-delegua"), exports);
|
|
|
16300
16414
|
__exportStar(require("./quebrador-linha"), exports);
|
|
16301
16415
|
__exportStar(require("./regras"), exports);
|
|
16302
16416
|
|
|
16303
|
-
},{"./estilizador-delegua":
|
|
16417
|
+
},{"./estilizador-delegua":126,"./quebrador-linha":128,"./regras":129}],128:[function(require,module,exports){
|
|
16304
16418
|
"use strict";
|
|
16305
16419
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16306
16420
|
exports.QuebradorDeLinha = void 0;
|
|
@@ -16498,7 +16612,7 @@ class QuebradorDeLinha {
|
|
|
16498
16612
|
}
|
|
16499
16613
|
exports.QuebradorDeLinha = QuebradorDeLinha;
|
|
16500
16614
|
|
|
16501
|
-
},{}],
|
|
16615
|
+
},{}],129:[function(require,module,exports){
|
|
16502
16616
|
"use strict";
|
|
16503
16617
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16504
16618
|
if (k2 === undefined) k2 = k;
|
|
@@ -16520,7 +16634,7 @@ __exportStar(require("./regra-convencao-nomenclatura"), exports);
|
|
|
16520
16634
|
__exportStar(require("./regra-explicitar-tipos-parametros"), exports);
|
|
16521
16635
|
__exportStar(require("./regra-paradigma-consistente"), exports);
|
|
16522
16636
|
|
|
16523
|
-
},{"./regra-convencao-nomenclatura":
|
|
16637
|
+
},{"./regra-convencao-nomenclatura":130,"./regra-explicitar-tipos-parametros":131,"./regra-fortalecer-tipos":132,"./regra-paradigma-consistente":133}],130:[function(require,module,exports){
|
|
16524
16638
|
"use strict";
|
|
16525
16639
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16526
16640
|
exports.RegraConvencaoNomenclatura = void 0;
|
|
@@ -16689,7 +16803,7 @@ class RegraConvencaoNomenclatura {
|
|
|
16689
16803
|
}
|
|
16690
16804
|
exports.RegraConvencaoNomenclatura = RegraConvencaoNomenclatura;
|
|
16691
16805
|
|
|
16692
|
-
},{"../../declaracoes":
|
|
16806
|
+
},{"../../declaracoes":112}],131:[function(require,module,exports){
|
|
16693
16807
|
"use strict";
|
|
16694
16808
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16695
16809
|
exports.RegraExplicitarTiposParametros = void 0;
|
|
@@ -16740,7 +16854,7 @@ class RegraExplicitarTiposParametros {
|
|
|
16740
16854
|
}
|
|
16741
16855
|
exports.RegraExplicitarTiposParametros = RegraExplicitarTiposParametros;
|
|
16742
16856
|
|
|
16743
|
-
},{}],
|
|
16857
|
+
},{}],132:[function(require,module,exports){
|
|
16744
16858
|
"use strict";
|
|
16745
16859
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16746
16860
|
exports.RegraFortalecerTipos = void 0;
|
|
@@ -16825,7 +16939,7 @@ class RegraFortalecerTipos {
|
|
|
16825
16939
|
}
|
|
16826
16940
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
16827
16941
|
|
|
16828
|
-
},{"../../construtos":
|
|
16942
|
+
},{"../../construtos":63,"../../declaracoes":112,"../../inferenciador":141}],133:[function(require,module,exports){
|
|
16829
16943
|
"use strict";
|
|
16830
16944
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16831
16945
|
exports.RegraParadigmaConsistente = void 0;
|
|
@@ -16915,7 +17029,7 @@ class RegraParadigmaConsistente {
|
|
|
16915
17029
|
}
|
|
16916
17030
|
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
16917
17031
|
|
|
16918
|
-
},{"../../construtos/leia":
|
|
17032
|
+
},{"../../construtos/leia":65,"../../declaracoes":112,"../../lexador/mapeamento-paradigmas":216}],134:[function(require,module,exports){
|
|
16919
17033
|
"use strict";
|
|
16920
17034
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16921
17035
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -16930,7 +17044,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
16930
17044
|
}
|
|
16931
17045
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
16932
17046
|
|
|
16933
|
-
},{}],
|
|
17047
|
+
},{}],135:[function(require,module,exports){
|
|
16934
17048
|
"use strict";
|
|
16935
17049
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16936
17050
|
if (k2 === undefined) k2 = k;
|
|
@@ -16949,7 +17063,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16949
17063
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16950
17064
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
16951
17065
|
|
|
16952
|
-
},{"./erro-em-tempo-de-execucao":
|
|
17066
|
+
},{"./erro-em-tempo-de-execucao":134}],136:[function(require,module,exports){
|
|
16953
17067
|
"use strict";
|
|
16954
17068
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16955
17069
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -17910,7 +18024,7 @@ class FormatadorDelegua {
|
|
|
17910
18024
|
}
|
|
17911
18025
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
17912
18026
|
|
|
17913
|
-
},{"../construtos":
|
|
18027
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/delegua":227}],137:[function(require,module,exports){
|
|
17914
18028
|
"use strict";
|
|
17915
18029
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17916
18030
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18345,6 +18459,16 @@ class FormatadorPitugues {
|
|
|
18345
18459
|
const valor = await expressão.valor.aceitar(this);
|
|
18346
18460
|
return `type(${valor})`;
|
|
18347
18461
|
}
|
|
18462
|
+
async visitarExpressaoMorsa(expressao) {
|
|
18463
|
+
const variavel = await expressao.variavel.aceitar(this);
|
|
18464
|
+
const valor = await expressao.valor.aceitar(this);
|
|
18465
|
+
return `${variavel} := ${valor}`;
|
|
18466
|
+
}
|
|
18467
|
+
async visitarExpressaoBote(expressao) {
|
|
18468
|
+
const esquerda = await expressao.esquerda.aceitar(this);
|
|
18469
|
+
const direita = await expressao.direita.aceitar(this);
|
|
18470
|
+
return `${esquerda} ~> ${direita}`;
|
|
18471
|
+
}
|
|
18348
18472
|
mapearOperador(tipo) {
|
|
18349
18473
|
const mapa = {
|
|
18350
18474
|
[pitugues_1.default.ADICAO]: '+',
|
|
@@ -18372,7 +18496,7 @@ class FormatadorPitugues {
|
|
|
18372
18496
|
}
|
|
18373
18497
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
18374
18498
|
|
|
18375
|
-
},{"../construtos":
|
|
18499
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/pitugues":231}],138:[function(require,module,exports){
|
|
18376
18500
|
"use strict";
|
|
18377
18501
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18378
18502
|
if (k2 === undefined) k2 = k;
|
|
@@ -18392,7 +18516,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18392
18516
|
__exportStar(require("./formatador-delegua"), exports);
|
|
18393
18517
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
18394
18518
|
|
|
18395
|
-
},{"./formatador-delegua":
|
|
18519
|
+
},{"./formatador-delegua":136,"./formatador-pitugues":137}],139:[function(require,module,exports){
|
|
18396
18520
|
"use strict";
|
|
18397
18521
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18398
18522
|
exports.cyrb53 = cyrb53;
|
|
@@ -18436,7 +18560,7 @@ function uuidv4() {
|
|
|
18436
18560
|
});
|
|
18437
18561
|
}
|
|
18438
18562
|
|
|
18439
|
-
},{}],
|
|
18563
|
+
},{}],140:[function(require,module,exports){
|
|
18440
18564
|
"use strict";
|
|
18441
18565
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18442
18566
|
if (k2 === undefined) k2 = k;
|
|
@@ -18465,7 +18589,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
18465
18589
|
__exportStar(require("./lexador"), exports);
|
|
18466
18590
|
__exportStar(require("./tradutores"), exports);
|
|
18467
18591
|
|
|
18468
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":
|
|
18592
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":21,"./construtos":63,"./declaracoes":112,"./estilizador":127,"./formatadores":138,"./geracao-identificadores":139,"./interfaces":153,"./interpretador":192,"./lexador":212,"./tradutores":235}],141:[function(require,module,exports){
|
|
18469
18593
|
"use strict";
|
|
18470
18594
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18471
18595
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18491,7 +18615,11 @@ var TipoNativoSimbolo;
|
|
|
18491
18615
|
TipoNativoSimbolo["VAZIO"] = "<palavra reservada vazio ajuda=\"palavra reservada usada para definir fun\u00E7\u00F5es que n\u00E3o retornam valores\">";
|
|
18492
18616
|
})(TipoNativoSimbolo || (exports.TipoNativoSimbolo = TipoNativoSimbolo = {}));
|
|
18493
18617
|
function inferirVetor(vetor) {
|
|
18494
|
-
const tiposEmVetor = new Set(vetor.map((elemento) =>
|
|
18618
|
+
const tiposEmVetor = new Set(vetor.map((elemento) => {
|
|
18619
|
+
if (elemento === null || elemento === undefined)
|
|
18620
|
+
return 'nulo';
|
|
18621
|
+
return elemento.constructor.name;
|
|
18622
|
+
}));
|
|
18495
18623
|
if (tiposEmVetor.size > 1) {
|
|
18496
18624
|
return 'vetor';
|
|
18497
18625
|
}
|
|
@@ -18587,7 +18715,7 @@ function inferirTipoVariavel(variavel) {
|
|
|
18587
18715
|
}
|
|
18588
18716
|
}
|
|
18589
18717
|
|
|
18590
|
-
},{"./tipos-de-dados/delegua":
|
|
18718
|
+
},{"./tipos-de-dados/delegua":222,"./tipos-de-dados/primitivos":224,"./tipos-de-simbolos/delegua":227}],142:[function(require,module,exports){
|
|
18591
18719
|
"use strict";
|
|
18592
18720
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18593
18721
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -18606,27 +18734,27 @@ class InformacaoElementoSintatico {
|
|
|
18606
18734
|
}
|
|
18607
18735
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
18608
18736
|
|
|
18609
|
-
},{}],
|
|
18737
|
+
},{}],143:[function(require,module,exports){
|
|
18610
18738
|
"use strict";
|
|
18611
18739
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18612
18740
|
|
|
18613
|
-
},{}],
|
|
18741
|
+
},{}],144:[function(require,module,exports){
|
|
18614
18742
|
"use strict";
|
|
18615
18743
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18616
18744
|
|
|
18617
|
-
},{}],
|
|
18745
|
+
},{}],145:[function(require,module,exports){
|
|
18618
18746
|
"use strict";
|
|
18619
18747
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18620
18748
|
|
|
18621
|
-
},{}],
|
|
18749
|
+
},{}],146:[function(require,module,exports){
|
|
18622
18750
|
"use strict";
|
|
18623
18751
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18624
18752
|
|
|
18625
|
-
},{}],
|
|
18753
|
+
},{}],147:[function(require,module,exports){
|
|
18626
18754
|
"use strict";
|
|
18627
18755
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18628
18756
|
|
|
18629
|
-
},{}],
|
|
18757
|
+
},{}],148:[function(require,module,exports){
|
|
18630
18758
|
"use strict";
|
|
18631
18759
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18632
18760
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -18638,11 +18766,11 @@ var DiagnosticoSeveridade;
|
|
|
18638
18766
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
18639
18767
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
18640
18768
|
|
|
18641
|
-
},{}],
|
|
18769
|
+
},{}],149:[function(require,module,exports){
|
|
18642
18770
|
"use strict";
|
|
18643
18771
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18644
18772
|
|
|
18645
|
-
},{}],
|
|
18773
|
+
},{}],150:[function(require,module,exports){
|
|
18646
18774
|
"use strict";
|
|
18647
18775
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18648
18776
|
if (k2 === undefined) k2 = k;
|
|
@@ -18663,15 +18791,15 @@ __exportStar(require("./correcao-sugerida-interface"), exports);
|
|
|
18663
18791
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
18664
18792
|
__exportStar(require("./erro-interpretador-interface"), exports);
|
|
18665
18793
|
|
|
18666
|
-
},{"./correcao-sugerida-interface":
|
|
18794
|
+
},{"./correcao-sugerida-interface":147,"./diagnostico-analisador-semantico":148,"./erro-interpretador-interface":149}],151:[function(require,module,exports){
|
|
18667
18795
|
"use strict";
|
|
18668
18796
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18669
18797
|
|
|
18670
|
-
},{}],
|
|
18798
|
+
},{}],152:[function(require,module,exports){
|
|
18671
18799
|
"use strict";
|
|
18672
18800
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18673
18801
|
|
|
18674
|
-
},{}],
|
|
18802
|
+
},{}],153:[function(require,module,exports){
|
|
18675
18803
|
"use strict";
|
|
18676
18804
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18677
18805
|
if (k2 === undefined) k2 = k;
|
|
@@ -18712,15 +18840,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
18712
18840
|
__exportStar(require("./erros"), exports);
|
|
18713
18841
|
__exportStar(require("./retornos"), exports);
|
|
18714
18842
|
|
|
18715
|
-
},{"./avaliador-sintatico-interface":
|
|
18716
|
-
"use strict";
|
|
18717
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18718
|
-
|
|
18719
|
-
},{}],153:[function(require,module,exports){
|
|
18720
|
-
"use strict";
|
|
18721
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18722
|
-
|
|
18723
|
-
},{}],154:[function(require,module,exports){
|
|
18843
|
+
},{"./avaliador-sintatico-interface":143,"./componente-modulo-classe-interface":144,"./componente-modulo-funcao-interface":145,"./construtos":146,"./erros":150,"./estilizador/estilizador-interface":151,"./formatador-comum-interface":152,"./interpretador-com-depuracao-interface":154,"./interpretador-interface":155,"./lexador-interface":156,"./modulo-interface":157,"./parametro-interface":158,"./pilha-interface":159,"./primitiva-interface":160,"./resolvedor-interface":161,"./resultado-parcial-interpretador-interface":162,"./retornos":163,"./retornos/retorno-execucao-interface":166,"./simbolo-interface":169,"./tradutor-interface":170,"./variavel-interface":171,"./visitante-comum-interface":172,"./visitante-delegua-interface":173}],154:[function(require,module,exports){
|
|
18724
18844
|
"use strict";
|
|
18725
18845
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18726
18846
|
|
|
@@ -18750,6 +18870,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18750
18870
|
|
|
18751
18871
|
},{}],161:[function(require,module,exports){
|
|
18752
18872
|
"use strict";
|
|
18873
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18874
|
+
|
|
18875
|
+
},{}],162:[function(require,module,exports){
|
|
18876
|
+
"use strict";
|
|
18877
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18878
|
+
|
|
18879
|
+
},{}],163:[function(require,module,exports){
|
|
18880
|
+
"use strict";
|
|
18753
18881
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18754
18882
|
if (k2 === undefined) k2 = k;
|
|
18755
18883
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -18771,15 +18899,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
18771
18899
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
18772
18900
|
__exportStar(require("./retorno-lexador"), exports);
|
|
18773
18901
|
|
|
18774
|
-
},{"./retorno-analisador-semantico":
|
|
18775
|
-
"use strict";
|
|
18776
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18777
|
-
|
|
18778
|
-
},{}],163:[function(require,module,exports){
|
|
18779
|
-
"use strict";
|
|
18780
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18781
|
-
|
|
18782
|
-
},{}],164:[function(require,module,exports){
|
|
18902
|
+
},{"./retorno-analisador-semantico":164,"./retorno-avaliador-sintatico":165,"./retorno-execucao-interface":166,"./retorno-interpretador-interface":167,"./retorno-lexador":168}],164:[function(require,module,exports){
|
|
18783
18903
|
"use strict";
|
|
18784
18904
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18785
18905
|
|
|
@@ -18813,6 +18933,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18813
18933
|
|
|
18814
18934
|
},{}],172:[function(require,module,exports){
|
|
18815
18935
|
"use strict";
|
|
18936
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18937
|
+
|
|
18938
|
+
},{}],173:[function(require,module,exports){
|
|
18939
|
+
"use strict";
|
|
18940
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18941
|
+
|
|
18942
|
+
},{}],174:[function(require,module,exports){
|
|
18943
|
+
"use strict";
|
|
18816
18944
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18817
18945
|
if (k2 === undefined) k2 = k;
|
|
18818
18946
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -19426,7 +19554,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
19426
19554
|
}
|
|
19427
19555
|
}
|
|
19428
19556
|
|
|
19429
|
-
},{"../bibliotecas/biblioteca-global":27,"../construtos":
|
|
19557
|
+
},{"../bibliotecas/biblioteca-global":27,"../construtos":63,"./estruturas/delegua-funcao":180,"./estruturas/descritor-tipo-classe":181,"./estruturas/funcao-padrao":182,"./estruturas/objeto-delegua-classe":188}],175:[function(require,module,exports){
|
|
19430
19558
|
"use strict";
|
|
19431
19559
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19432
19560
|
exports.EspacoMemoria = void 0;
|
|
@@ -19451,7 +19579,7 @@ class EspacoMemoria {
|
|
|
19451
19579
|
}
|
|
19452
19580
|
exports.EspacoMemoria = EspacoMemoria;
|
|
19453
19581
|
|
|
19454
|
-
},{}],
|
|
19582
|
+
},{}],176:[function(require,module,exports){
|
|
19455
19583
|
"use strict";
|
|
19456
19584
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19457
19585
|
exports.Chamavel = void 0;
|
|
@@ -19468,7 +19596,7 @@ class Chamavel {
|
|
|
19468
19596
|
}
|
|
19469
19597
|
exports.Chamavel = Chamavel;
|
|
19470
19598
|
|
|
19471
|
-
},{}],
|
|
19599
|
+
},{}],177:[function(require,module,exports){
|
|
19472
19600
|
"use strict";
|
|
19473
19601
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19474
19602
|
exports.ClasseDeModulo = void 0;
|
|
@@ -19489,7 +19617,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
19489
19617
|
}
|
|
19490
19618
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
19491
19619
|
|
|
19492
|
-
},{"./chamavel":
|
|
19620
|
+
},{"./chamavel":176}],178:[function(require,module,exports){
|
|
19493
19621
|
"use strict";
|
|
19494
19622
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19495
19623
|
exports.ClassePadrao = void 0;
|
|
@@ -19530,7 +19658,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
19530
19658
|
}
|
|
19531
19659
|
exports.ClassePadrao = ClassePadrao;
|
|
19532
19660
|
|
|
19533
|
-
},{"./chamavel":
|
|
19661
|
+
},{"./chamavel":176}],179:[function(require,module,exports){
|
|
19534
19662
|
"use strict";
|
|
19535
19663
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19536
19664
|
exports.DeleguaFuncaoNativa = void 0;
|
|
@@ -19573,7 +19701,7 @@ class DeleguaFuncaoNativa extends delegua_funcao_1.DeleguaFuncao {
|
|
|
19573
19701
|
}
|
|
19574
19702
|
exports.DeleguaFuncaoNativa = DeleguaFuncaoNativa;
|
|
19575
19703
|
|
|
19576
|
-
},{"./delegua-funcao":
|
|
19704
|
+
},{"./delegua-funcao":180}],180:[function(require,module,exports){
|
|
19577
19705
|
"use strict";
|
|
19578
19706
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19579
19707
|
exports.DeleguaFuncao = void 0;
|
|
@@ -19765,7 +19893,7 @@ function tipoDeDados(valor) {
|
|
|
19765
19893
|
}
|
|
19766
19894
|
}
|
|
19767
19895
|
|
|
19768
|
-
},{"../../declaracoes":
|
|
19896
|
+
},{"../../declaracoes":112,"../../quebras":221,"../espaco-memoria":175,"./chamavel":176,"./objeto-delegua-classe":188}],181:[function(require,module,exports){
|
|
19769
19897
|
"use strict";
|
|
19770
19898
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19771
19899
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -20080,7 +20208,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
20080
20208
|
}
|
|
20081
20209
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
20082
20210
|
|
|
20083
|
-
},{"../../excecoes":
|
|
20211
|
+
},{"../../excecoes":135,"./chamavel":176,"./metodo-polimorfico":184,"./objeto-delegua-classe":188}],182:[function(require,module,exports){
|
|
20084
20212
|
"use strict";
|
|
20085
20213
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20086
20214
|
exports.FuncaoPadrao = void 0;
|
|
@@ -20119,7 +20247,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
20119
20247
|
}
|
|
20120
20248
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
20121
20249
|
|
|
20122
|
-
},{"./chamavel":
|
|
20250
|
+
},{"./chamavel":176}],183:[function(require,module,exports){
|
|
20123
20251
|
"use strict";
|
|
20124
20252
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20125
20253
|
if (k2 === undefined) k2 = k;
|
|
@@ -20152,7 +20280,7 @@ __exportStar(require("./objeto-padrao"), exports);
|
|
|
20152
20280
|
__exportStar(require("./referencia-montao"), exports);
|
|
20153
20281
|
__exportStar(require("./super-proxy"), exports);
|
|
20154
20282
|
|
|
20155
|
-
},{"./chamavel":
|
|
20283
|
+
},{"./chamavel":176,"./classe-de-modulo":177,"./classe-padrao":178,"./delegua-funcao":180,"./delegua-funcao-nativa":179,"./descritor-tipo-classe":181,"./funcao-padrao":182,"./metodo-polimorfico":184,"./metodo-primitiva":185,"./modulo":186,"./objeto-base":187,"./objeto-delegua-classe":188,"./objeto-padrao":189,"./referencia-montao":190,"./super-proxy":191}],184:[function(require,module,exports){
|
|
20156
20284
|
"use strict";
|
|
20157
20285
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20158
20286
|
exports.MetodoPolimorfico = void 0;
|
|
@@ -20330,7 +20458,7 @@ class MetodoPolimorfico extends chamavel_1.Chamavel {
|
|
|
20330
20458
|
}
|
|
20331
20459
|
exports.MetodoPolimorfico = MetodoPolimorfico;
|
|
20332
20460
|
|
|
20333
|
-
},{"../../excecoes":
|
|
20461
|
+
},{"../../excecoes":135,"../../inferenciador":141,"./chamavel":176}],185:[function(require,module,exports){
|
|
20334
20462
|
"use strict";
|
|
20335
20463
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20336
20464
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -20376,7 +20504,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
20376
20504
|
}
|
|
20377
20505
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
20378
20506
|
|
|
20379
|
-
},{"./chamavel":
|
|
20507
|
+
},{"./chamavel":176}],186:[function(require,module,exports){
|
|
20380
20508
|
"use strict";
|
|
20381
20509
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20382
20510
|
exports.DeleguaModulo = void 0;
|
|
@@ -20402,7 +20530,7 @@ class DeleguaModulo {
|
|
|
20402
20530
|
}
|
|
20403
20531
|
exports.DeleguaModulo = DeleguaModulo;
|
|
20404
20532
|
|
|
20405
|
-
},{}],
|
|
20533
|
+
},{}],187:[function(require,module,exports){
|
|
20406
20534
|
"use strict";
|
|
20407
20535
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20408
20536
|
exports.OBJETO_BASE = void 0;
|
|
@@ -20476,7 +20604,7 @@ function criarDescritorObjeto() {
|
|
|
20476
20604
|
}
|
|
20477
20605
|
exports.OBJETO_BASE = criarDescritorObjeto();
|
|
20478
20606
|
|
|
20479
|
-
},{"./delegua-funcao-nativa":
|
|
20607
|
+
},{"./delegua-funcao-nativa":179,"./descritor-tipo-classe":181}],188:[function(require,module,exports){
|
|
20480
20608
|
"use strict";
|
|
20481
20609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20482
20610
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -20658,7 +20786,7 @@ class ObjetoDeleguaClasse {
|
|
|
20658
20786
|
}
|
|
20659
20787
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
20660
20788
|
|
|
20661
|
-
},{"../../excecoes":
|
|
20789
|
+
},{"../../excecoes":135}],189:[function(require,module,exports){
|
|
20662
20790
|
"use strict";
|
|
20663
20791
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20664
20792
|
exports.ObjetoPadrao = void 0;
|
|
@@ -20692,7 +20820,7 @@ class ObjetoPadrao {
|
|
|
20692
20820
|
}
|
|
20693
20821
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
20694
20822
|
|
|
20695
|
-
},{}],
|
|
20823
|
+
},{}],190:[function(require,module,exports){
|
|
20696
20824
|
"use strict";
|
|
20697
20825
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20698
20826
|
exports.ReferenciaMontao = void 0;
|
|
@@ -20717,7 +20845,7 @@ class ReferenciaMontao {
|
|
|
20717
20845
|
}
|
|
20718
20846
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
20719
20847
|
|
|
20720
|
-
},{}],
|
|
20848
|
+
},{}],191:[function(require,module,exports){
|
|
20721
20849
|
"use strict";
|
|
20722
20850
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20723
20851
|
exports.SuperProxy = void 0;
|
|
@@ -20756,7 +20884,7 @@ class SuperProxy extends chamavel_1.Chamavel {
|
|
|
20756
20884
|
}
|
|
20757
20885
|
exports.SuperProxy = SuperProxy;
|
|
20758
20886
|
|
|
20759
|
-
},{"./chamavel":
|
|
20887
|
+
},{"./chamavel":176}],192:[function(require,module,exports){
|
|
20760
20888
|
"use strict";
|
|
20761
20889
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
20762
20890
|
if (k2 === undefined) k2 = k;
|
|
@@ -20777,7 +20905,7 @@ __exportStar(require("./estruturas"), exports);
|
|
|
20777
20905
|
__exportStar(require("./interpretador"), exports);
|
|
20778
20906
|
__exportStar(require("./interpretador-base"), exports);
|
|
20779
20907
|
|
|
20780
|
-
},{"./estruturas":
|
|
20908
|
+
},{"./estruturas":183,"./interpretador":194,"./interpretador-base":193}],193:[function(require,module,exports){
|
|
20781
20909
|
"use strict";
|
|
20782
20910
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20783
20911
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21227,10 +21355,10 @@ class InterpretadorBase {
|
|
|
21227
21355
|
case delegua_1.default.NEGACAO:
|
|
21228
21356
|
return !this.eVerdadeiro(valor);
|
|
21229
21357
|
case delegua_1.default.BIT_NOT:
|
|
21230
|
-
// Mantém BigInt como BigInt, converte outros para Number
|
|
21231
21358
|
if (typeof valor === 'bigint') {
|
|
21232
21359
|
return ~valor;
|
|
21233
21360
|
}
|
|
21361
|
+
this.verificarOperandoNumero(expressao.operador, valor);
|
|
21234
21362
|
return ~Number(valor);
|
|
21235
21363
|
// Para incrementar e decrementar, primeiro precisamos saber se o operador
|
|
21236
21364
|
// veio antes do literal ou variável.
|
|
@@ -22988,7 +23116,7 @@ class InterpretadorBase {
|
|
|
22988
23116
|
}
|
|
22989
23117
|
exports.InterpretadorBase = InterpretadorBase;
|
|
22990
23118
|
|
|
22991
|
-
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":
|
|
23119
|
+
},{"../avaliador-sintatico":21,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":63,"../excecoes":135,"../inferenciador":141,"../lexador":212,"../quebras":221,"../tipos-de-dados/delegua":222,"../tipos-de-dados/primitivos":224,"../tipos-de-simbolos/delegua":227,"./espaco-memoria":175,"./estruturas":183,"./estruturas/metodo-primitiva":185,"./pilha-escopos-execucao":196,"browser-process-hrtime":420}],194:[function(require,module,exports){
|
|
22992
23120
|
"use strict";
|
|
22993
23121
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22994
23122
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24487,7 +24615,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
24487
24615
|
}
|
|
24488
24616
|
exports.Interpretador = Interpretador;
|
|
24489
24617
|
|
|
24490
|
-
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":
|
|
24618
|
+
},{"../bibliotecas/dialetos/pitugues/primitivas-tupla":28,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":63,"../declaracoes":112,"../excecoes":135,"../inferenciador":141,"../quebras":221,"../tipos-de-dados/delegua":222,"../tipos-de-dados/primitivos":224,"../tipos-de-simbolos/delegua":227,"./comum":174,"./estruturas":183,"./interpretador-base":193,"./montao":195}],195:[function(require,module,exports){
|
|
24491
24619
|
"use strict";
|
|
24492
24620
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24493
24621
|
exports.Montao = void 0;
|
|
@@ -24544,7 +24672,7 @@ class Montao {
|
|
|
24544
24672
|
}
|
|
24545
24673
|
exports.Montao = Montao;
|
|
24546
24674
|
|
|
24547
|
-
},{"../excecoes":
|
|
24675
|
+
},{"../excecoes":135,"../geracao-identificadores":139}],196:[function(require,module,exports){
|
|
24548
24676
|
"use strict";
|
|
24549
24677
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24550
24678
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -24875,7 +25003,7 @@ class PilhaEscoposExecucao {
|
|
|
24875
25003
|
}
|
|
24876
25004
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
24877
25005
|
|
|
24878
|
-
},{"../excecoes":
|
|
25006
|
+
},{"../excecoes":135,"../inferenciador":141,"../lexador":212,"../tipos-de-dados/delegua":222,"./estruturas":183}],197:[function(require,module,exports){
|
|
24879
25007
|
"use strict";
|
|
24880
25008
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
24881
25009
|
if (k2 === undefined) k2 = k;
|
|
@@ -24900,7 +25028,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
24900
25028
|
__exportStar(require("./lexador-prisma"), exports);
|
|
24901
25029
|
__exportStar(require("./lexador-tenda"), exports);
|
|
24902
25030
|
|
|
24903
|
-
},{"./lexador-calango":
|
|
25031
|
+
},{"./lexador-calango":198,"./lexador-egua-classico":199,"./lexador-guarani":200,"./lexador-pitugues":201,"./lexador-portugol-ipt":202,"./lexador-prisma":203,"./lexador-tenda":204}],198:[function(require,module,exports){
|
|
24904
25032
|
"use strict";
|
|
24905
25033
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
24906
25034
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25215,7 +25343,7 @@ class LexadorCalango {
|
|
|
25215
25343
|
}
|
|
25216
25344
|
exports.LexadorCalango = LexadorCalango;
|
|
25217
25345
|
|
|
25218
|
-
},{"../../tipos-de-simbolos/calango":
|
|
25346
|
+
},{"../../tipos-de-simbolos/calango":225,"../simbolo":220,"./palavras-reservadas/calango":205}],199:[function(require,module,exports){
|
|
25219
25347
|
"use strict";
|
|
25220
25348
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25221
25349
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25508,7 +25636,7 @@ class LexadorEguaClassico {
|
|
|
25508
25636
|
}
|
|
25509
25637
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
25510
25638
|
|
|
25511
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
25639
|
+
},{"../../tipos-de-simbolos/egua-classico":228,"../simbolo":220,"./palavras-reservadas/egua-classico":206}],200:[function(require,module,exports){
|
|
25512
25640
|
"use strict";
|
|
25513
25641
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25514
25642
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -25627,7 +25755,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
25627
25755
|
}
|
|
25628
25756
|
exports.LexadorGuarani = LexadorGuarani;
|
|
25629
25757
|
|
|
25630
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
25758
|
+
},{"../../tipos-de-simbolos/guarani":229,"../lexador-base":214,"./palavras-reservadas/guarani":207}],201:[function(require,module,exports){
|
|
25631
25759
|
"use strict";
|
|
25632
25760
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25633
25761
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26006,8 +26134,15 @@ class LexadorPitugues {
|
|
|
26006
26134
|
}
|
|
26007
26135
|
break;
|
|
26008
26136
|
case ':':
|
|
26009
|
-
this.
|
|
26010
|
-
|
|
26137
|
+
if (this.proximoSimbolo() === '=') {
|
|
26138
|
+
this.avancar(); // consome ':'
|
|
26139
|
+
this.avancar(); // consome '='
|
|
26140
|
+
this.adicionarSimbolo(pitugues_2.default.MORSA);
|
|
26141
|
+
}
|
|
26142
|
+
else {
|
|
26143
|
+
this.adicionarSimbolo(pitugues_2.default.DOIS_PONTOS);
|
|
26144
|
+
this.avancar();
|
|
26145
|
+
}
|
|
26011
26146
|
break;
|
|
26012
26147
|
case '%':
|
|
26013
26148
|
this.adicionarSimbolo(pitugues_2.default.MODULO);
|
|
@@ -26028,6 +26163,10 @@ class LexadorPitugues {
|
|
|
26028
26163
|
this.adicionarSimbolo(pitugues_2.default.MULTIPLICACAO);
|
|
26029
26164
|
}
|
|
26030
26165
|
break;
|
|
26166
|
+
case '?':
|
|
26167
|
+
this.adicionarSimbolo(pitugues_2.default.INTERROGACAO);
|
|
26168
|
+
this.avancar();
|
|
26169
|
+
break;
|
|
26031
26170
|
case '!':
|
|
26032
26171
|
this.avancar();
|
|
26033
26172
|
if (this.simboloAtual() === '=') {
|
|
@@ -26043,8 +26182,15 @@ class LexadorPitugues {
|
|
|
26043
26182
|
this.avancar();
|
|
26044
26183
|
break;
|
|
26045
26184
|
case '~':
|
|
26046
|
-
this.
|
|
26047
|
-
|
|
26185
|
+
if (this.proximoSimbolo() === '>') {
|
|
26186
|
+
this.avancar();
|
|
26187
|
+
this.avancar();
|
|
26188
|
+
this.adicionarSimbolo(pitugues_2.default.BOTE);
|
|
26189
|
+
}
|
|
26190
|
+
else {
|
|
26191
|
+
this.adicionarSimbolo(pitugues_2.default.BIT_NOT);
|
|
26192
|
+
this.avancar();
|
|
26193
|
+
}
|
|
26048
26194
|
break;
|
|
26049
26195
|
case '|':
|
|
26050
26196
|
this.adicionarSimbolo(pitugues_2.default.BIT_OR);
|
|
@@ -26152,7 +26298,7 @@ class LexadorPitugues {
|
|
|
26152
26298
|
}
|
|
26153
26299
|
exports.LexadorPitugues = LexadorPitugues;
|
|
26154
26300
|
|
|
26155
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
26301
|
+
},{"../../tipos-de-simbolos/pitugues":231,"../simbolo":220,"./palavras-reservadas/pitugues":208,"browser-process-hrtime":420}],202:[function(require,module,exports){
|
|
26156
26302
|
"use strict";
|
|
26157
26303
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26158
26304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26461,7 +26607,7 @@ class LexadorPortugolIpt {
|
|
|
26461
26607
|
}
|
|
26462
26608
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
26463
26609
|
|
|
26464
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
26610
|
+
},{"../../tipos-de-simbolos/portugol-ipt":232,"../simbolo":220,"./palavras-reservadas/portugol-ipt":209}],203:[function(require,module,exports){
|
|
26465
26611
|
"use strict";
|
|
26466
26612
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26467
26613
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26862,7 +27008,7 @@ class LexadorPrisma {
|
|
|
26862
27008
|
}
|
|
26863
27009
|
exports.LexadorPrisma = LexadorPrisma;
|
|
26864
27010
|
|
|
26865
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
27011
|
+
},{"../../tipos-de-simbolos/prisma":233,"../simbolo":220,"./palavras-reservadas/prisma":210,"browser-process-hrtime":420}],204:[function(require,module,exports){
|
|
26866
27012
|
"use strict";
|
|
26867
27013
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26868
27014
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27256,7 +27402,7 @@ class LexadorTenda {
|
|
|
27256
27402
|
}
|
|
27257
27403
|
exports.LexadorTenda = LexadorTenda;
|
|
27258
27404
|
|
|
27259
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
27405
|
+
},{"../../tipos-de-simbolos/tenda":234,"../simbolo":220,"./palavras-reservadas/tenda":211,"browser-process-hrtime":420}],205:[function(require,module,exports){
|
|
27260
27406
|
"use strict";
|
|
27261
27407
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27262
27408
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27304,7 +27450,7 @@ exports.default = {
|
|
|
27304
27450
|
verdadeiro: calango_1.default.VERDADEIRO,
|
|
27305
27451
|
};
|
|
27306
27452
|
|
|
27307
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
27453
|
+
},{"../../../tipos-de-simbolos/calango":225}],206:[function(require,module,exports){
|
|
27308
27454
|
"use strict";
|
|
27309
27455
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27310
27456
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27345,7 +27491,7 @@ exports.palavrasReservadas = {
|
|
|
27345
27491
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
27346
27492
|
};
|
|
27347
27493
|
|
|
27348
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
27494
|
+
},{"../../../tipos-de-simbolos/egua-classico":228}],207:[function(require,module,exports){
|
|
27349
27495
|
"use strict";
|
|
27350
27496
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27351
27497
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27357,7 +27503,7 @@ exports.palavrasReservadas = {
|
|
|
27357
27503
|
hai: guarani_1.default.HAI,
|
|
27358
27504
|
};
|
|
27359
27505
|
|
|
27360
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
27506
|
+
},{"../../../tipos-de-simbolos/guarani":229}],208:[function(require,module,exports){
|
|
27361
27507
|
"use strict";
|
|
27362
27508
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27363
27509
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27421,7 +27567,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
27421
27567
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
27422
27568
|
};
|
|
27423
27569
|
|
|
27424
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
27570
|
+
},{"../../../tipos-de-simbolos/pitugues":231}],209:[function(require,module,exports){
|
|
27425
27571
|
"use strict";
|
|
27426
27572
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27427
27573
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27481,7 +27627,7 @@ exports.palavrasReservadas = {
|
|
|
27481
27627
|
não: portugol_ipt_1.default.NAO,
|
|
27482
27628
|
};
|
|
27483
27629
|
|
|
27484
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
27630
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":232}],210:[function(require,module,exports){
|
|
27485
27631
|
"use strict";
|
|
27486
27632
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27487
27633
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27532,7 +27678,7 @@ exports.palavrasReservadas = {
|
|
|
27532
27678
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
27533
27679
|
};
|
|
27534
27680
|
|
|
27535
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
27681
|
+
},{"../../../tipos-de-simbolos/prisma":233}],211:[function(require,module,exports){
|
|
27536
27682
|
"use strict";
|
|
27537
27683
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27538
27684
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -27590,7 +27736,7 @@ exports.palavrasReservadas = {
|
|
|
27590
27736
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
27591
27737
|
};
|
|
27592
27738
|
|
|
27593
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
27739
|
+
},{"../../../tipos-de-simbolos/tenda":234}],212:[function(require,module,exports){
|
|
27594
27740
|
"use strict";
|
|
27595
27741
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
27596
27742
|
if (k2 === undefined) k2 = k;
|
|
@@ -27613,7 +27759,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
27613
27759
|
__exportStar(require("./micro-lexador"), exports);
|
|
27614
27760
|
__exportStar(require("./simbolo"), exports);
|
|
27615
27761
|
|
|
27616
|
-
},{"./dialetos":
|
|
27762
|
+
},{"./dialetos":197,"./lexador":215,"./lexador-base-linha-unica":213,"./micro-lexador":218,"./simbolo":220}],213:[function(require,module,exports){
|
|
27617
27763
|
"use strict";
|
|
27618
27764
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27619
27765
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -27702,7 +27848,7 @@ class LexadorBaseLinhaUnica {
|
|
|
27702
27848
|
}
|
|
27703
27849
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
27704
27850
|
|
|
27705
|
-
},{"./simbolo":
|
|
27851
|
+
},{"./simbolo":220}],214:[function(require,module,exports){
|
|
27706
27852
|
"use strict";
|
|
27707
27853
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27708
27854
|
exports.LexadorBase = void 0;
|
|
@@ -27841,7 +27987,7 @@ class LexadorBase {
|
|
|
27841
27987
|
}
|
|
27842
27988
|
exports.LexadorBase = LexadorBase;
|
|
27843
27989
|
|
|
27844
|
-
},{"./simbolo":
|
|
27990
|
+
},{"./simbolo":220}],215:[function(require,module,exports){
|
|
27845
27991
|
"use strict";
|
|
27846
27992
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27847
27993
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28515,7 +28661,7 @@ class Lexador {
|
|
|
28515
28661
|
}
|
|
28516
28662
|
exports.Lexador = Lexador;
|
|
28517
28663
|
|
|
28518
|
-
},{"../tipos-de-simbolos/delegua":
|
|
28664
|
+
},{"../tipos-de-simbolos/delegua":227,"./palavras-reservadas":219,"./simbolo":220,"browser-process-hrtime":420}],216:[function(require,module,exports){
|
|
28519
28665
|
"use strict";
|
|
28520
28666
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28521
28667
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28698,7 +28844,7 @@ function pertenceAoParadigma(lexema, paradigma) {
|
|
|
28698
28844
|
return paradigmaLexema === paradigma;
|
|
28699
28845
|
}
|
|
28700
28846
|
|
|
28701
|
-
},{"../tipos-de-simbolos/delegua":
|
|
28847
|
+
},{"../tipos-de-simbolos/delegua":227}],217:[function(require,module,exports){
|
|
28702
28848
|
"use strict";
|
|
28703
28849
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28704
28850
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -28918,7 +29064,7 @@ class MicroLexadorPitugues {
|
|
|
28918
29064
|
}
|
|
28919
29065
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
28920
29066
|
|
|
28921
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
29067
|
+
},{"../tipos-de-simbolos/pitugues":231,"./palavras-reservadas":219,"./simbolo":220}],218:[function(require,module,exports){
|
|
28922
29068
|
"use strict";
|
|
28923
29069
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
28924
29070
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29156,7 +29302,7 @@ class MicroLexador {
|
|
|
29156
29302
|
}
|
|
29157
29303
|
exports.MicroLexador = MicroLexador;
|
|
29158
29304
|
|
|
29159
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
29305
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":230,"./palavras-reservadas":219,"./simbolo":220}],219:[function(require,module,exports){
|
|
29160
29306
|
"use strict";
|
|
29161
29307
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29162
29308
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -29257,7 +29403,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
29257
29403
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
29258
29404
|
};
|
|
29259
29405
|
|
|
29260
|
-
},{"../tipos-de-simbolos/delegua":
|
|
29406
|
+
},{"../tipos-de-simbolos/delegua":227}],220:[function(require,module,exports){
|
|
29261
29407
|
"use strict";
|
|
29262
29408
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29263
29409
|
exports.Simbolo = void 0;
|
|
@@ -29278,7 +29424,7 @@ class Simbolo {
|
|
|
29278
29424
|
}
|
|
29279
29425
|
exports.Simbolo = Simbolo;
|
|
29280
29426
|
|
|
29281
|
-
},{}],
|
|
29427
|
+
},{}],221:[function(require,module,exports){
|
|
29282
29428
|
"use strict";
|
|
29283
29429
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29284
29430
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -29303,7 +29449,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
29303
29449
|
}
|
|
29304
29450
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
29305
29451
|
|
|
29306
|
-
},{}],
|
|
29452
|
+
},{}],222:[function(require,module,exports){
|
|
29307
29453
|
"use strict";
|
|
29308
29454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29309
29455
|
exports.default = {
|
|
@@ -29337,7 +29483,7 @@ exports.default = {
|
|
|
29337
29483
|
VETOR_TEXTO: 'texto[]',
|
|
29338
29484
|
};
|
|
29339
29485
|
|
|
29340
|
-
},{}],
|
|
29486
|
+
},{}],223:[function(require,module,exports){
|
|
29341
29487
|
"use strict";
|
|
29342
29488
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29343
29489
|
exports.default = {
|
|
@@ -29367,7 +29513,7 @@ exports.default = {
|
|
|
29367
29513
|
VETOR_TEXTO: 'texto[]',
|
|
29368
29514
|
};
|
|
29369
29515
|
|
|
29370
|
-
},{}],
|
|
29516
|
+
},{}],224:[function(require,module,exports){
|
|
29371
29517
|
"use strict";
|
|
29372
29518
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29373
29519
|
exports.default = {
|
|
@@ -29386,7 +29532,7 @@ exports.default = {
|
|
|
29386
29532
|
TEXTO: 'string',
|
|
29387
29533
|
};
|
|
29388
29534
|
|
|
29389
|
-
},{}],
|
|
29535
|
+
},{}],225:[function(require,module,exports){
|
|
29390
29536
|
"use strict";
|
|
29391
29537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29392
29538
|
exports.default = {
|
|
@@ -29458,7 +29604,7 @@ exports.default = {
|
|
|
29458
29604
|
VIRGULA: 'VIRGULA',
|
|
29459
29605
|
};
|
|
29460
29606
|
|
|
29461
|
-
},{}],
|
|
29607
|
+
},{}],226:[function(require,module,exports){
|
|
29462
29608
|
"use strict";
|
|
29463
29609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29464
29610
|
exports.default = {
|
|
@@ -29485,7 +29631,7 @@ exports.default = {
|
|
|
29485
29631
|
VIRGULA: 'VIRGULA',
|
|
29486
29632
|
};
|
|
29487
29633
|
|
|
29488
|
-
},{}],
|
|
29634
|
+
},{}],227:[function(require,module,exports){
|
|
29489
29635
|
"use strict";
|
|
29490
29636
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29491
29637
|
exports.default = {
|
|
@@ -29601,7 +29747,7 @@ exports.default = {
|
|
|
29601
29747
|
VIRGULA: 'VIRGULA',
|
|
29602
29748
|
};
|
|
29603
29749
|
|
|
29604
|
-
},{}],
|
|
29750
|
+
},{}],228:[function(require,module,exports){
|
|
29605
29751
|
"use strict";
|
|
29606
29752
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29607
29753
|
exports.default = {
|
|
@@ -29679,7 +29825,7 @@ exports.default = {
|
|
|
29679
29825
|
VIRGULA: 'VIRGULA',
|
|
29680
29826
|
};
|
|
29681
29827
|
|
|
29682
|
-
},{}],
|
|
29828
|
+
},{}],229:[function(require,module,exports){
|
|
29683
29829
|
"use strict";
|
|
29684
29830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29685
29831
|
exports.default = {
|
|
@@ -29696,7 +29842,7 @@ exports.default = {
|
|
|
29696
29842
|
VIRGULA: 'VIRGULA',
|
|
29697
29843
|
};
|
|
29698
29844
|
|
|
29699
|
-
},{}],
|
|
29845
|
+
},{}],230:[function(require,module,exports){
|
|
29700
29846
|
"use strict";
|
|
29701
29847
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29702
29848
|
exports.default = {
|
|
@@ -29749,7 +29895,7 @@ exports.default = {
|
|
|
29749
29895
|
VIRGULA: 'VIRGULA',
|
|
29750
29896
|
};
|
|
29751
29897
|
|
|
29752
|
-
},{}],
|
|
29898
|
+
},{}],231:[function(require,module,exports){
|
|
29753
29899
|
"use strict";
|
|
29754
29900
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29755
29901
|
exports.default = {
|
|
@@ -29759,6 +29905,7 @@ exports.default = {
|
|
|
29759
29905
|
BIT_OR: 'BIT_OR',
|
|
29760
29906
|
BIT_XOR: 'BIT_XOR',
|
|
29761
29907
|
BIT_NOT: 'BIT_NOT',
|
|
29908
|
+
BOTE: 'BOTE',
|
|
29762
29909
|
CADA: 'CADA',
|
|
29763
29910
|
CASO: 'CASO',
|
|
29764
29911
|
CHAVE_DIREITA: 'CHAVE_DIREITA',
|
|
@@ -29788,6 +29935,7 @@ exports.default = {
|
|
|
29788
29935
|
IGUAL: 'IGUAL',
|
|
29789
29936
|
IGUAL_IGUAL: 'IGUAL_IGUAL',
|
|
29790
29937
|
IMPRIMA: 'IMPRIMA',
|
|
29938
|
+
INTERROGACAO: 'INTERROGACAO',
|
|
29791
29939
|
FALSO: 'FALSO',
|
|
29792
29940
|
FAZER: 'FAZER',
|
|
29793
29941
|
FINALMENTE: 'FINALMENTE',
|
|
@@ -29802,6 +29950,7 @@ exports.default = {
|
|
|
29802
29950
|
MAIOR_IGUAL: 'MAIOR_IGUAL',
|
|
29803
29951
|
MAIOR_MAIOR: 'MAIOR_MAIOR',
|
|
29804
29952
|
MAIS_IGUAL: 'MAIS_IGUAL',
|
|
29953
|
+
MORSA: 'MORSA',
|
|
29805
29954
|
MENOR: 'MENOR',
|
|
29806
29955
|
MENOS_IGUAL: 'MENOS_IGUAL',
|
|
29807
29956
|
MENOR_IGUAL: 'MENOR_IGUAL',
|
|
@@ -29841,7 +29990,7 @@ exports.default = {
|
|
|
29841
29990
|
VIRGULA: 'VIRGULA',
|
|
29842
29991
|
};
|
|
29843
29992
|
|
|
29844
|
-
},{}],
|
|
29993
|
+
},{}],232:[function(require,module,exports){
|
|
29845
29994
|
"use strict";
|
|
29846
29995
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29847
29996
|
exports.default = {
|
|
@@ -29920,7 +30069,7 @@ exports.default = {
|
|
|
29920
30069
|
VARIAVEL: 'VARIAVEL',
|
|
29921
30070
|
};
|
|
29922
30071
|
|
|
29923
|
-
},{}],
|
|
30072
|
+
},{}],233:[function(require,module,exports){
|
|
29924
30073
|
"use strict";
|
|
29925
30074
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29926
30075
|
exports.default = {
|
|
@@ -30004,7 +30153,7 @@ exports.default = {
|
|
|
30004
30153
|
VIRGULA: 'VIRGULA',
|
|
30005
30154
|
};
|
|
30006
30155
|
|
|
30007
|
-
},{}],
|
|
30156
|
+
},{}],234:[function(require,module,exports){
|
|
30008
30157
|
"use strict";
|
|
30009
30158
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30010
30159
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -30099,7 +30248,7 @@ exports.default = {
|
|
|
30099
30248
|
VIRGULA: 'VIRGULA',
|
|
30100
30249
|
};
|
|
30101
30250
|
|
|
30102
|
-
},{}],
|
|
30251
|
+
},{}],235:[function(require,module,exports){
|
|
30103
30252
|
"use strict";
|
|
30104
30253
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30105
30254
|
if (k2 === undefined) k2 = k;
|
|
@@ -30132,7 +30281,7 @@ __exportStar(require("./tradutor-reverso-python"), exports);
|
|
|
30132
30281
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
30133
30282
|
__exportStar(require("./tradutor-ruby"), exports);
|
|
30134
30283
|
|
|
30135
|
-
},{"./tradutor-assembly-arm":
|
|
30284
|
+
},{"./tradutor-assembly-arm":244,"./tradutor-assembly-risc-v":245,"./tradutor-assembly-x64":246,"./tradutor-assemblyscript":247,"./tradutor-elixir":248,"./tradutor-javascript":249,"./tradutor-mermaidjs":250,"./tradutor-portugol-ipt":251,"./tradutor-python":252,"./tradutor-reverso-calango":253,"./tradutor-reverso-javascript":254,"./tradutor-reverso-python":255,"./tradutor-reverso-tenda":256,"./tradutor-ruby":257,"./tradutor-webassembly":258}],236:[function(require,module,exports){
|
|
30136
30285
|
"use strict";
|
|
30137
30286
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30138
30287
|
exports.ArestaFluxograma = void 0;
|
|
@@ -30144,7 +30293,7 @@ class ArestaFluxograma {
|
|
|
30144
30293
|
}
|
|
30145
30294
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
30146
30295
|
|
|
30147
|
-
},{}],
|
|
30296
|
+
},{}],237:[function(require,module,exports){
|
|
30148
30297
|
"use strict";
|
|
30149
30298
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
30150
30299
|
if (k2 === undefined) k2 = k;
|
|
@@ -30167,7 +30316,7 @@ __exportStar(require("./subgrafo-funcao"), exports);
|
|
|
30167
30316
|
__exportStar(require("./subgrafo-metodo"), exports);
|
|
30168
30317
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
30169
30318
|
|
|
30170
|
-
},{"./aresta-fluxograma":
|
|
30319
|
+
},{"./aresta-fluxograma":236,"./subgrafo-classe":238,"./subgrafo-funcao":239,"./subgrafo-metodo":240,"./vertice-fluxograma":241}],238:[function(require,module,exports){
|
|
30171
30320
|
"use strict";
|
|
30172
30321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30173
30322
|
exports.SubgrafoClasse = void 0;
|
|
@@ -30213,7 +30362,7 @@ class SubgrafoClasse {
|
|
|
30213
30362
|
}
|
|
30214
30363
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
30215
30364
|
|
|
30216
|
-
},{}],
|
|
30365
|
+
},{}],239:[function(require,module,exports){
|
|
30217
30366
|
"use strict";
|
|
30218
30367
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30219
30368
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -30228,7 +30377,7 @@ class SubgrafoFuncao {
|
|
|
30228
30377
|
}
|
|
30229
30378
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
30230
30379
|
|
|
30231
|
-
},{}],
|
|
30380
|
+
},{}],240:[function(require,module,exports){
|
|
30232
30381
|
"use strict";
|
|
30233
30382
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30234
30383
|
exports.SubgrafoMetodo = void 0;
|
|
@@ -30245,7 +30394,7 @@ class SubgrafoMetodo {
|
|
|
30245
30394
|
}
|
|
30246
30395
|
exports.SubgrafoMetodo = SubgrafoMetodo;
|
|
30247
30396
|
|
|
30248
|
-
},{}],
|
|
30397
|
+
},{}],241:[function(require,module,exports){
|
|
30249
30398
|
"use strict";
|
|
30250
30399
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30251
30400
|
exports.VerticeFluxograma = void 0;
|
|
@@ -30262,7 +30411,7 @@ class VerticeFluxograma {
|
|
|
30262
30411
|
}
|
|
30263
30412
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
30264
30413
|
|
|
30265
|
-
},{}],
|
|
30414
|
+
},{}],242:[function(require,module,exports){
|
|
30266
30415
|
"use strict";
|
|
30267
30416
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
30268
30417
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -31502,7 +31651,7 @@ __decorate([
|
|
|
31502
31651
|
Decorators_1.Override
|
|
31503
31652
|
], Python3Lexer.prototype, "nextToken", null);
|
|
31504
31653
|
|
|
31505
|
-
},{"./python3-parser":
|
|
31654
|
+
},{"./python3-parser":243,"antlr4ts/CommonToken":268,"antlr4ts/Decorators":272,"antlr4ts/Lexer":280,"antlr4ts/Token":297,"antlr4ts/VocabularyImpl":303,"antlr4ts/atn/ATNDeserializer":309,"antlr4ts/atn/LexerATNSimulator":330,"antlr4ts/misc/Utils":391}],243:[function(require,module,exports){
|
|
31506
31655
|
"use strict";
|
|
31507
31656
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
31508
31657
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -42749,7 +42898,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
42749
42898
|
}
|
|
42750
42899
|
exports.Yield_argContext = Yield_argContext;
|
|
42751
42900
|
|
|
42752
|
-
},{"antlr4ts/FailedPredicateException":
|
|
42901
|
+
},{"antlr4ts/FailedPredicateException":276,"antlr4ts/NoViableAltException":284,"antlr4ts/Parser":285,"antlr4ts/ParserRuleContext":288,"antlr4ts/RecognitionException":291,"antlr4ts/Token":297,"antlr4ts/VocabularyImpl":303,"antlr4ts/atn/ATN":305,"antlr4ts/atn/ATNDeserializer":309,"antlr4ts/atn/ParserATNSimulator":346,"antlr4ts/misc/Utils":391}],244:[function(require,module,exports){
|
|
42753
42902
|
"use strict";
|
|
42754
42903
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42755
42904
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -43461,7 +43610,7 @@ ${labelFim}:`;
|
|
|
43461
43610
|
}
|
|
43462
43611
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
43463
43612
|
|
|
43464
|
-
},{"../construtos":
|
|
43613
|
+
},{"../construtos":63,"../declaracoes":112}],245:[function(require,module,exports){
|
|
43465
43614
|
"use strict";
|
|
43466
43615
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43467
43616
|
exports.TradutorAssemblyRISCV = void 0;
|
|
@@ -44150,7 +44299,7 @@ ${labelSenao}:`;
|
|
|
44150
44299
|
}
|
|
44151
44300
|
exports.TradutorAssemblyRISCV = TradutorAssemblyRISCV;
|
|
44152
44301
|
|
|
44153
|
-
},{"../construtos":
|
|
44302
|
+
},{"../construtos":63,"../declaracoes":112}],246:[function(require,module,exports){
|
|
44154
44303
|
"use strict";
|
|
44155
44304
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
44156
44305
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -44925,7 +45074,7 @@ __delegua_print_int:
|
|
|
44925
45074
|
}
|
|
44926
45075
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
44927
45076
|
|
|
44928
|
-
},{"../construtos":
|
|
45077
|
+
},{"../construtos":63,"../declaracoes":112}],247:[function(require,module,exports){
|
|
44929
45078
|
"use strict";
|
|
44930
45079
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
44931
45080
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -46140,7 +46289,7 @@ class TradutorAssemblyScript {
|
|
|
46140
46289
|
}
|
|
46141
46290
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
46142
46291
|
|
|
46143
|
-
},{"../construtos":
|
|
46292
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/delegua":227}],248:[function(require,module,exports){
|
|
46144
46293
|
"use strict";
|
|
46145
46294
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
46146
46295
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47101,7 +47250,7 @@ class TradutorElixir {
|
|
|
47101
47250
|
}
|
|
47102
47251
|
exports.TradutorElixir = TradutorElixir;
|
|
47103
47252
|
|
|
47104
|
-
},{"../tipos-de-simbolos/delegua":
|
|
47253
|
+
},{"../tipos-de-simbolos/delegua":227}],249:[function(require,module,exports){
|
|
47105
47254
|
"use strict";
|
|
47106
47255
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47107
47256
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -47893,7 +48042,7 @@ class TradutorJavaScript {
|
|
|
47893
48042
|
}
|
|
47894
48043
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
47895
48044
|
|
|
47896
|
-
},{"../construtos":
|
|
48045
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/delegua":227}],250:[function(require,module,exports){
|
|
47897
48046
|
"use strict";
|
|
47898
48047
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
47899
48048
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -48583,6 +48732,11 @@ class TradutorMermaidJs {
|
|
|
48583
48732
|
}
|
|
48584
48733
|
return Promise.resolve(texto);
|
|
48585
48734
|
}
|
|
48735
|
+
async visitarExpressaoMorsa(expressao) {
|
|
48736
|
+
const variavel = await expressao.variavel.aceitar(this);
|
|
48737
|
+
const valor = await expressao.valor.aceitar(this);
|
|
48738
|
+
return `${variavel} := ${valor}`;
|
|
48739
|
+
}
|
|
48586
48740
|
/**
|
|
48587
48741
|
* Traduz uma declaração de Expressao que contém uma chamada de função,
|
|
48588
48742
|
* criando os vértices necessários para conectar ao subgrafo da função.
|
|
@@ -48717,7 +48871,7 @@ class TradutorMermaidJs {
|
|
|
48717
48871
|
}
|
|
48718
48872
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
48719
48873
|
|
|
48720
|
-
},{"../construtos":
|
|
48874
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/delegua":227,"./mermaid":237}],251:[function(require,module,exports){
|
|
48721
48875
|
"use strict";
|
|
48722
48876
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
48723
48877
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49099,7 +49253,7 @@ class TradutorPortugolIpt {
|
|
|
49099
49253
|
}
|
|
49100
49254
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
49101
49255
|
|
|
49102
|
-
},{"../avaliador-sintatico/dialetos":17,"../construtos":
|
|
49256
|
+
},{"../avaliador-sintatico/dialetos":17,"../construtos":63,"../declaracoes":112,"../lexador/dialetos":197,"../tipos-de-simbolos/portugol-ipt":232}],252:[function(require,module,exports){
|
|
49103
49257
|
"use strict";
|
|
49104
49258
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49105
49259
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -49784,7 +49938,7 @@ class TradutorPython {
|
|
|
49784
49938
|
}
|
|
49785
49939
|
exports.TradutorPython = TradutorPython;
|
|
49786
49940
|
|
|
49787
|
-
},{"../construtos":
|
|
49941
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/delegua":227}],253:[function(require,module,exports){
|
|
49788
49942
|
"use strict";
|
|
49789
49943
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
49790
49944
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -50138,7 +50292,7 @@ class TradutorReversoCalango {
|
|
|
50138
50292
|
}
|
|
50139
50293
|
exports.TradutorReversoCalango = TradutorReversoCalango;
|
|
50140
50294
|
|
|
50141
|
-
},{"../tipos-de-simbolos/calango":
|
|
50295
|
+
},{"../tipos-de-simbolos/calango":225}],254:[function(require,module,exports){
|
|
50142
50296
|
"use strict";
|
|
50143
50297
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50144
50298
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -50533,7 +50687,7 @@ class TradutorReversoJavaScript {
|
|
|
50533
50687
|
}
|
|
50534
50688
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
50535
50689
|
|
|
50536
|
-
},{}],
|
|
50690
|
+
},{}],255:[function(require,module,exports){
|
|
50537
50691
|
"use strict";
|
|
50538
50692
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50539
50693
|
exports.TradutorReversoPython = void 0;
|
|
@@ -51186,7 +51340,7 @@ class TradutorReversoPython extends AbstractParseTreeVisitor_1.AbstractParseTree
|
|
|
51186
51340
|
}
|
|
51187
51341
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
51188
51342
|
|
|
51189
|
-
},{"./python/python3-lexer":
|
|
51343
|
+
},{"./python/python3-lexer":242,"./python/python3-parser":243,"antlr4ts":374,"antlr4ts/tree/AbstractParseTreeVisitor":392}],256:[function(require,module,exports){
|
|
51190
51344
|
"use strict";
|
|
51191
51345
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51192
51346
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -51777,7 +51931,7 @@ class TradutorReversoTenda {
|
|
|
51777
51931
|
}
|
|
51778
51932
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
51779
51933
|
|
|
51780
|
-
},{"../construtos":
|
|
51934
|
+
},{"../construtos":63,"../tipos-de-simbolos/tenda":234}],257:[function(require,module,exports){
|
|
51781
51935
|
"use strict";
|
|
51782
51936
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
51783
51937
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -52464,7 +52618,7 @@ class TradutorRuby {
|
|
|
52464
52618
|
}
|
|
52465
52619
|
exports.TradutorRuby = TradutorRuby;
|
|
52466
52620
|
|
|
52467
|
-
},{"../construtos":
|
|
52621
|
+
},{"../construtos":63,"../declaracoes":112,"../tipos-de-simbolos/delegua":227}],258:[function(require,module,exports){
|
|
52468
52622
|
"use strict";
|
|
52469
52623
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52470
52624
|
exports.TradutorWebAssembly = void 0;
|
|
@@ -53351,7 +53505,7 @@ process.exit(codigoSaida);
|
|
|
53351
53505
|
}
|
|
53352
53506
|
exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
53353
53507
|
|
|
53354
|
-
},{"../construtos":
|
|
53508
|
+
},{"../construtos":63,"../declaracoes":112}],259:[function(require,module,exports){
|
|
53355
53509
|
"use strict";
|
|
53356
53510
|
/*!
|
|
53357
53511
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53359,7 +53513,7 @@ exports.TradutorWebAssembly = TradutorWebAssembly;
|
|
|
53359
53513
|
*/
|
|
53360
53514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53361
53515
|
|
|
53362
|
-
},{}],
|
|
53516
|
+
},{}],260:[function(require,module,exports){
|
|
53363
53517
|
"use strict";
|
|
53364
53518
|
/*!
|
|
53365
53519
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53367,7 +53521,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
53367
53521
|
*/
|
|
53368
53522
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53369
53523
|
|
|
53370
|
-
},{}],
|
|
53524
|
+
},{}],261:[function(require,module,exports){
|
|
53371
53525
|
"use strict";
|
|
53372
53526
|
/*!
|
|
53373
53527
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53529,7 +53683,7 @@ __decorate([
|
|
|
53529
53683
|
], ANTLRInputStream.prototype, "toString", null);
|
|
53530
53684
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
53531
53685
|
|
|
53532
|
-
},{"./Decorators":
|
|
53686
|
+
},{"./Decorators":272,"./IntStream":278,"assert":415}],262:[function(require,module,exports){
|
|
53533
53687
|
"use strict";
|
|
53534
53688
|
/*!
|
|
53535
53689
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53612,7 +53766,7 @@ __decorate([
|
|
|
53612
53766
|
], BailErrorStrategy.prototype, "sync", null);
|
|
53613
53767
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
53614
53768
|
|
|
53615
|
-
},{"./Decorators":
|
|
53769
|
+
},{"./Decorators":272,"./DefaultErrorStrategy":273,"./InputMismatchException":277,"./misc/ParseCancellationException":389}],263:[function(require,module,exports){
|
|
53616
53770
|
"use strict";
|
|
53617
53771
|
/*!
|
|
53618
53772
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54102,7 +54256,7 @@ BufferedTokenStream = __decorate([
|
|
|
54102
54256
|
], BufferedTokenStream);
|
|
54103
54257
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
54104
54258
|
|
|
54105
|
-
},{"./CommonToken":
|
|
54259
|
+
},{"./CommonToken":268,"./Decorators":272,"./Lexer":280,"./Token":297,"./misc/Interval":384,"assert":415}],264:[function(require,module,exports){
|
|
54106
54260
|
"use strict";
|
|
54107
54261
|
/*!
|
|
54108
54262
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54110,7 +54264,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
54110
54264
|
*/
|
|
54111
54265
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54112
54266
|
|
|
54113
|
-
},{}],
|
|
54267
|
+
},{}],265:[function(require,module,exports){
|
|
54114
54268
|
"use strict";
|
|
54115
54269
|
/*!
|
|
54116
54270
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54244,7 +54398,7 @@ var CharStreams;
|
|
|
54244
54398
|
// }
|
|
54245
54399
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
54246
54400
|
|
|
54247
|
-
},{"./CodePointBuffer":
|
|
54401
|
+
},{"./CodePointBuffer":266,"./CodePointCharStream":267,"./IntStream":278}],266:[function(require,module,exports){
|
|
54248
54402
|
"use strict";
|
|
54249
54403
|
/*!
|
|
54250
54404
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54479,7 +54633,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
54479
54633
|
CodePointBuffer.Builder = Builder;
|
|
54480
54634
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
54481
54635
|
|
|
54482
|
-
},{"./misc/Character":
|
|
54636
|
+
},{"./misc/Character":380,"assert":415}],267:[function(require,module,exports){
|
|
54483
54637
|
"use strict";
|
|
54484
54638
|
/*!
|
|
54485
54639
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54629,7 +54783,7 @@ __decorate([
|
|
|
54629
54783
|
], CodePointCharStream.prototype, "getText", null);
|
|
54630
54784
|
exports.CodePointCharStream = CodePointCharStream;
|
|
54631
54785
|
|
|
54632
|
-
},{"./Decorators":
|
|
54786
|
+
},{"./Decorators":272,"./IntStream":278,"./misc/Interval":384,"assert":415}],268:[function(require,module,exports){
|
|
54633
54787
|
"use strict";
|
|
54634
54788
|
/*!
|
|
54635
54789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54859,7 +55013,7 @@ CommonToken = __decorate([
|
|
|
54859
55013
|
], CommonToken);
|
|
54860
55014
|
exports.CommonToken = CommonToken;
|
|
54861
55015
|
|
|
54862
|
-
},{"./Decorators":
|
|
55016
|
+
},{"./Decorators":272,"./Token":297,"./misc/Interval":384}],269:[function(require,module,exports){
|
|
54863
55017
|
"use strict";
|
|
54864
55018
|
/*!
|
|
54865
55019
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54923,7 +55077,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
54923
55077
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
54924
55078
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
54925
55079
|
|
|
54926
|
-
},{"./CommonToken":
|
|
55080
|
+
},{"./CommonToken":268,"./Decorators":272,"./misc/Interval":384}],270:[function(require,module,exports){
|
|
54927
55081
|
"use strict";
|
|
54928
55082
|
/*!
|
|
54929
55083
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55050,7 +55204,7 @@ CommonTokenStream = __decorate([
|
|
|
55050
55204
|
], CommonTokenStream);
|
|
55051
55205
|
exports.CommonTokenStream = CommonTokenStream;
|
|
55052
55206
|
|
|
55053
|
-
},{"./BufferedTokenStream":
|
|
55207
|
+
},{"./BufferedTokenStream":263,"./Decorators":272,"./Token":297}],271:[function(require,module,exports){
|
|
55054
55208
|
"use strict";
|
|
55055
55209
|
/*!
|
|
55056
55210
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55084,7 +55238,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
55084
55238
|
*/
|
|
55085
55239
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
55086
55240
|
|
|
55087
|
-
},{}],
|
|
55241
|
+
},{}],272:[function(require,module,exports){
|
|
55088
55242
|
"use strict";
|
|
55089
55243
|
/*!
|
|
55090
55244
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55111,7 +55265,7 @@ function SuppressWarnings(options) {
|
|
|
55111
55265
|
}
|
|
55112
55266
|
exports.SuppressWarnings = SuppressWarnings;
|
|
55113
55267
|
|
|
55114
|
-
},{}],
|
|
55268
|
+
},{}],273:[function(require,module,exports){
|
|
55115
55269
|
"use strict";
|
|
55116
55270
|
/*!
|
|
55117
55271
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -55925,7 +56079,7 @@ __decorate([
|
|
|
55925
56079
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
55926
56080
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
55927
56081
|
|
|
55928
|
-
},{"./Decorators":
|
|
56082
|
+
},{"./Decorators":272,"./FailedPredicateException":276,"./InputMismatchException":277,"./NoViableAltException":284,"./Token":297,"./atn/ATNState":311,"./atn/ATNStateType":312,"./atn/PredictionContext":352,"./misc/IntervalSet":385}],274:[function(require,module,exports){
|
|
55929
56083
|
"use strict";
|
|
55930
56084
|
/*!
|
|
55931
56085
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56001,7 +56155,7 @@ var Dependents;
|
|
|
56001
56155
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
56002
56156
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
56003
56157
|
|
|
56004
|
-
},{}],
|
|
56158
|
+
},{}],275:[function(require,module,exports){
|
|
56005
56159
|
"use strict";
|
|
56006
56160
|
/*!
|
|
56007
56161
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56149,7 +56303,7 @@ __decorate([
|
|
|
56149
56303
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
56150
56304
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
56151
56305
|
|
|
56152
|
-
},{"./Decorators":
|
|
56306
|
+
},{"./Decorators":272,"./misc/BitSet":379,"./misc/Interval":384}],276:[function(require,module,exports){
|
|
56153
56307
|
"use strict";
|
|
56154
56308
|
/*!
|
|
56155
56309
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56214,7 +56368,7 @@ FailedPredicateException = __decorate([
|
|
|
56214
56368
|
], FailedPredicateException);
|
|
56215
56369
|
exports.FailedPredicateException = FailedPredicateException;
|
|
56216
56370
|
|
|
56217
|
-
},{"./Decorators":
|
|
56371
|
+
},{"./Decorators":272,"./RecognitionException":291,"./atn/PredicateTransition":351}],277:[function(require,module,exports){
|
|
56218
56372
|
"use strict";
|
|
56219
56373
|
/*!
|
|
56220
56374
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56254,7 +56408,7 @@ InputMismatchException = __decorate([
|
|
|
56254
56408
|
], InputMismatchException);
|
|
56255
56409
|
exports.InputMismatchException = InputMismatchException;
|
|
56256
56410
|
|
|
56257
|
-
},{"./Decorators":
|
|
56411
|
+
},{"./Decorators":272,"./RecognitionException":291}],278:[function(require,module,exports){
|
|
56258
56412
|
"use strict";
|
|
56259
56413
|
/*!
|
|
56260
56414
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56277,7 +56431,7 @@ var IntStream;
|
|
|
56277
56431
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
56278
56432
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
56279
56433
|
|
|
56280
|
-
},{}],
|
|
56434
|
+
},{}],279:[function(require,module,exports){
|
|
56281
56435
|
"use strict";
|
|
56282
56436
|
/*!
|
|
56283
56437
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56324,7 +56478,7 @@ __decorate([
|
|
|
56324
56478
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
56325
56479
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
56326
56480
|
|
|
56327
|
-
},{"./Decorators":
|
|
56481
|
+
},{"./Decorators":272,"./ParserRuleContext":288}],280:[function(require,module,exports){
|
|
56328
56482
|
"use strict";
|
|
56329
56483
|
/*!
|
|
56330
56484
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56660,7 +56814,7 @@ __decorate([
|
|
|
56660
56814
|
], Lexer.prototype, "charPositionInLine", null);
|
|
56661
56815
|
exports.Lexer = Lexer;
|
|
56662
56816
|
|
|
56663
|
-
},{"./CommonTokenFactory":
|
|
56817
|
+
},{"./CommonTokenFactory":269,"./Decorators":272,"./IntStream":278,"./LexerNoViableAltException":282,"./Recognizer":292,"./Token":297,"./atn/LexerATNSimulator":330,"./misc/IntegerStack":383,"./misc/Interval":384}],281:[function(require,module,exports){
|
|
56664
56818
|
"use strict";
|
|
56665
56819
|
/*!
|
|
56666
56820
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56740,7 +56894,7 @@ LexerInterpreter = __decorate([
|
|
|
56740
56894
|
], LexerInterpreter);
|
|
56741
56895
|
exports.LexerInterpreter = LexerInterpreter;
|
|
56742
56896
|
|
|
56743
|
-
},{"./Decorators":
|
|
56897
|
+
},{"./Decorators":272,"./Lexer":280,"./atn/LexerATNSimulator":330}],282:[function(require,module,exports){
|
|
56744
56898
|
"use strict";
|
|
56745
56899
|
/*!
|
|
56746
56900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56797,7 +56951,7 @@ LexerNoViableAltException = __decorate([
|
|
|
56797
56951
|
], LexerNoViableAltException);
|
|
56798
56952
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
56799
56953
|
|
|
56800
|
-
},{"./Decorators":
|
|
56954
|
+
},{"./Decorators":272,"./RecognitionException":291,"./misc/Interval":384,"./misc/Utils":391}],283:[function(require,module,exports){
|
|
56801
56955
|
"use strict";
|
|
56802
56956
|
/*!
|
|
56803
56957
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57007,7 +57161,7 @@ ListTokenSource = __decorate([
|
|
|
57007
57161
|
], ListTokenSource);
|
|
57008
57162
|
exports.ListTokenSource = ListTokenSource;
|
|
57009
57163
|
|
|
57010
|
-
},{"./CommonTokenFactory":
|
|
57164
|
+
},{"./CommonTokenFactory":269,"./Decorators":272,"./Token":297}],284:[function(require,module,exports){
|
|
57011
57165
|
"use strict";
|
|
57012
57166
|
/*!
|
|
57013
57167
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57062,7 +57216,7 @@ __decorate([
|
|
|
57062
57216
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
57063
57217
|
exports.NoViableAltException = NoViableAltException;
|
|
57064
57218
|
|
|
57065
|
-
},{"./Decorators":
|
|
57219
|
+
},{"./Decorators":272,"./Parser":285,"./RecognitionException":291}],285:[function(require,module,exports){
|
|
57066
57220
|
(function (process){(function (){
|
|
57067
57221
|
"use strict";
|
|
57068
57222
|
/*!
|
|
@@ -57908,7 +58062,7 @@ __decorate([
|
|
|
57908
58062
|
exports.Parser = Parser;
|
|
57909
58063
|
|
|
57910
58064
|
}).call(this)}).call(this,require('_process'))
|
|
57911
|
-
},{"./Decorators":
|
|
58065
|
+
},{"./Decorators":272,"./DefaultErrorStrategy":273,"./Lexer":280,"./ProxyParserErrorListener":290,"./Recognizer":292,"./Token":297,"./atn/ATNDeserializationOptions":308,"./atn/ATNDeserializer":309,"./atn/ParseInfo":345,"./atn/ParserATNSimulator":346,"./atn/ProfilingATNSimulator":355,"./misc/IntegerStack":383,"./misc/Utils":391,"./tree/ErrorNode":393,"./tree/TerminalNode":395,"./tree/pattern/ParseTreePatternMatcher":400,"_process":474}],286:[function(require,module,exports){
|
|
57912
58066
|
"use strict";
|
|
57913
58067
|
/*!
|
|
57914
58068
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57916,7 +58070,7 @@ exports.Parser = Parser;
|
|
|
57916
58070
|
*/
|
|
57917
58071
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57918
58072
|
|
|
57919
|
-
},{}],
|
|
58073
|
+
},{}],287:[function(require,module,exports){
|
|
57920
58074
|
"use strict";
|
|
57921
58075
|
/*!
|
|
57922
58076
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58324,7 +58478,7 @@ ParserInterpreter = __decorate([
|
|
|
58324
58478
|
], ParserInterpreter);
|
|
58325
58479
|
exports.ParserInterpreter = ParserInterpreter;
|
|
58326
58480
|
|
|
58327
|
-
},{"./Decorators":
|
|
58481
|
+
},{"./Decorators":272,"./FailedPredicateException":276,"./InputMismatchException":277,"./InterpreterRuleContext":279,"./Parser":285,"./RecognitionException":291,"./Token":297,"./atn/ATNState":311,"./atn/ATNStateType":312,"./atn/LoopEndState":342,"./atn/ParserATNSimulator":346,"./atn/StarLoopEntryState":364,"./misc/BitSet":379}],288:[function(require,module,exports){
|
|
58328
58482
|
"use strict";
|
|
58329
58483
|
/*!
|
|
58330
58484
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58625,7 +58779,7 @@ __decorate([
|
|
|
58625
58779
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
58626
58780
|
exports.ParserRuleContext = ParserRuleContext;
|
|
58627
58781
|
|
|
58628
|
-
},{"./Decorators":
|
|
58782
|
+
},{"./Decorators":272,"./RuleContext":293,"./misc/Interval":384,"./tree/ErrorNode":393,"./tree/TerminalNode":395}],289:[function(require,module,exports){
|
|
58629
58783
|
"use strict";
|
|
58630
58784
|
/*!
|
|
58631
58785
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58675,7 +58829,7 @@ __decorate([
|
|
|
58675
58829
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
58676
58830
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
58677
58831
|
|
|
58678
|
-
},{"./Decorators":
|
|
58832
|
+
},{"./Decorators":272}],290:[function(require,module,exports){
|
|
58679
58833
|
"use strict";
|
|
58680
58834
|
/*!
|
|
58681
58835
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58734,7 +58888,7 @@ __decorate([
|
|
|
58734
58888
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
58735
58889
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
58736
58890
|
|
|
58737
|
-
},{"./Decorators":
|
|
58891
|
+
},{"./Decorators":272,"./ProxyErrorListener":289}],291:[function(require,module,exports){
|
|
58738
58892
|
"use strict";
|
|
58739
58893
|
/*!
|
|
58740
58894
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58839,7 +58993,7 @@ class RecognitionException extends Error {
|
|
|
58839
58993
|
}
|
|
58840
58994
|
exports.RecognitionException = RecognitionException;
|
|
58841
58995
|
|
|
58842
|
-
},{}],
|
|
58996
|
+
},{}],292:[function(require,module,exports){
|
|
58843
58997
|
"use strict";
|
|
58844
58998
|
/*!
|
|
58845
58999
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59058,7 +59212,7 @@ __decorate([
|
|
|
59058
59212
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
59059
59213
|
exports.Recognizer = Recognizer;
|
|
59060
59214
|
|
|
59061
|
-
},{"./ConsoleErrorListener":
|
|
59215
|
+
},{"./ConsoleErrorListener":271,"./Decorators":272,"./ProxyErrorListener":289,"./Token":297,"./misc/Utils":391}],293:[function(require,module,exports){
|
|
59062
59216
|
"use strict";
|
|
59063
59217
|
/*!
|
|
59064
59218
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59275,7 +59429,7 @@ __decorate([
|
|
|
59275
59429
|
], RuleContext.prototype, "toStringTree", null);
|
|
59276
59430
|
exports.RuleContext = RuleContext;
|
|
59277
59431
|
|
|
59278
|
-
},{"./Decorators":
|
|
59432
|
+
},{"./Decorators":272,"./ParserRuleContext":288,"./Recognizer":292,"./atn/ATN":305,"./misc/Interval":384,"./tree/RuleNode":394,"./tree/Trees":396}],294:[function(require,module,exports){
|
|
59279
59433
|
"use strict";
|
|
59280
59434
|
/*!
|
|
59281
59435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59326,7 +59480,7 @@ __decorate([
|
|
|
59326
59480
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
59327
59481
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
59328
59482
|
|
|
59329
|
-
},{"./Decorators":
|
|
59483
|
+
},{"./Decorators":272,"./ParserRuleContext":288,"./atn/ATN":305}],295:[function(require,module,exports){
|
|
59330
59484
|
"use strict";
|
|
59331
59485
|
/*!
|
|
59332
59486
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59349,7 +59503,7 @@ function RuleDependency(dependency) {
|
|
|
59349
59503
|
}
|
|
59350
59504
|
exports.RuleDependency = RuleDependency;
|
|
59351
59505
|
|
|
59352
|
-
},{}],
|
|
59506
|
+
},{}],296:[function(require,module,exports){
|
|
59353
59507
|
"use strict";
|
|
59354
59508
|
/*!
|
|
59355
59509
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59368,7 +59522,7 @@ function RuleVersion(version) {
|
|
|
59368
59522
|
}
|
|
59369
59523
|
exports.RuleVersion = RuleVersion;
|
|
59370
59524
|
|
|
59371
|
-
},{}],
|
|
59525
|
+
},{}],297:[function(require,module,exports){
|
|
59372
59526
|
"use strict";
|
|
59373
59527
|
/*!
|
|
59374
59528
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59408,7 +59562,7 @@ var Token;
|
|
|
59408
59562
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
59409
59563
|
})(Token = exports.Token || (exports.Token = {}));
|
|
59410
59564
|
|
|
59411
|
-
},{"./IntStream":
|
|
59565
|
+
},{"./IntStream":278}],298:[function(require,module,exports){
|
|
59412
59566
|
"use strict";
|
|
59413
59567
|
/*!
|
|
59414
59568
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59416,7 +59570,7 @@ var Token;
|
|
|
59416
59570
|
*/
|
|
59417
59571
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59418
59572
|
|
|
59419
|
-
},{}],
|
|
59573
|
+
},{}],299:[function(require,module,exports){
|
|
59420
59574
|
"use strict";
|
|
59421
59575
|
/*!
|
|
59422
59576
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59424,7 +59578,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59424
59578
|
*/
|
|
59425
59579
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59426
59580
|
|
|
59427
|
-
},{}],
|
|
59581
|
+
},{}],300:[function(require,module,exports){
|
|
59428
59582
|
"use strict";
|
|
59429
59583
|
/*!
|
|
59430
59584
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59432,7 +59586,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
59432
59586
|
*/
|
|
59433
59587
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59434
59588
|
|
|
59435
|
-
},{}],
|
|
59589
|
+
},{}],301:[function(require,module,exports){
|
|
59436
59590
|
"use strict";
|
|
59437
59591
|
/*!
|
|
59438
59592
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59940,7 +60094,7 @@ __decorate([
|
|
|
59940
60094
|
Decorators_1.Override
|
|
59941
60095
|
], ReplaceOp.prototype, "toString", null);
|
|
59942
60096
|
|
|
59943
|
-
},{"./Decorators":
|
|
60097
|
+
},{"./Decorators":272,"./Token":297,"./misc/Interval":384}],302:[function(require,module,exports){
|
|
59944
60098
|
"use strict";
|
|
59945
60099
|
/*!
|
|
59946
60100
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59948,7 +60102,7 @@ __decorate([
|
|
|
59948
60102
|
*/
|
|
59949
60103
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59950
60104
|
|
|
59951
|
-
},{}],
|
|
60105
|
+
},{}],303:[function(require,module,exports){
|
|
59952
60106
|
"use strict";
|
|
59953
60107
|
/*!
|
|
59954
60108
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60068,7 +60222,7 @@ __decorate([
|
|
|
60068
60222
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
60069
60223
|
exports.VocabularyImpl = VocabularyImpl;
|
|
60070
60224
|
|
|
60071
|
-
},{"./Decorators":
|
|
60225
|
+
},{"./Decorators":272,"./Token":297}],304:[function(require,module,exports){
|
|
60072
60226
|
"use strict";
|
|
60073
60227
|
/*!
|
|
60074
60228
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60076,7 +60230,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
60076
60230
|
*/
|
|
60077
60231
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60078
60232
|
|
|
60079
|
-
},{}],
|
|
60233
|
+
},{}],305:[function(require,module,exports){
|
|
60080
60234
|
"use strict";
|
|
60081
60235
|
/*!
|
|
60082
60236
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60298,7 +60452,7 @@ exports.ATN = ATN;
|
|
|
60298
60452
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
60299
60453
|
exports.ATN = ATN;
|
|
60300
60454
|
|
|
60301
|
-
},{"../Decorators":
|
|
60455
|
+
},{"../Decorators":272,"../Token":297,"../dfa/DFA":370,"../misc/Array2DHashMap":375,"../misc/IntervalSet":385,"../misc/ObjectEqualityComparator":388,"./InvalidState":328,"./LL1Analyzer":329,"./PredictionContext":352,"assert":415}],306:[function(require,module,exports){
|
|
60302
60456
|
"use strict";
|
|
60303
60457
|
/*!
|
|
60304
60458
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60823,7 +60977,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
60823
60977
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
60824
60978
|
], ActionSemanticContextATNConfig);
|
|
60825
60979
|
|
|
60826
|
-
},{"../Decorators":
|
|
60980
|
+
},{"../Decorators":272,"../misc/Array2DHashMap":375,"../misc/MurmurHash":387,"../misc/ObjectEqualityComparator":388,"./DecisionState":325,"./PredictionContext":352,"./SemanticContext":360,"assert":415}],307:[function(require,module,exports){
|
|
60827
60981
|
"use strict";
|
|
60828
60982
|
/*!
|
|
60829
60983
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61270,7 +61424,7 @@ __decorate([
|
|
|
61270
61424
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
61271
61425
|
exports.ATNConfigSet = ATNConfigSet;
|
|
61272
61426
|
|
|
61273
|
-
},{"../Decorators":
|
|
61427
|
+
},{"../Decorators":272,"../misc/Array2DHashMap":375,"../misc/Array2DHashSet":376,"../misc/ArrayEqualityComparator":377,"../misc/BitSet":379,"../misc/ObjectEqualityComparator":388,"../misc/Utils":391,"./ATN":305,"./ATNConfig":306,"./PredictionContext":352,"./PredictionContextCache":353,"./SemanticContext":360,"assert":415}],308:[function(require,module,exports){
|
|
61274
61428
|
"use strict";
|
|
61275
61429
|
/*!
|
|
61276
61430
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61349,7 +61503,7 @@ __decorate([
|
|
|
61349
61503
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
61350
61504
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
61351
61505
|
|
|
61352
|
-
},{"../Decorators":
|
|
61506
|
+
},{"../Decorators":272}],309:[function(require,module,exports){
|
|
61353
61507
|
"use strict";
|
|
61354
61508
|
/*!
|
|
61355
61509
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62436,7 +62590,7 @@ __decorate([
|
|
|
62436
62590
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
62437
62591
|
exports.ATNDeserializer = ATNDeserializer;
|
|
62438
62592
|
|
|
62439
|
-
},{"../Decorators":
|
|
62593
|
+
},{"../Decorators":272,"../Token":297,"../dfa/DFA":370,"../misc/Array2DHashSet":376,"../misc/BitSet":379,"../misc/IntervalSet":385,"../misc/UUID":390,"./ATN":305,"./ATNDeserializationOptions":308,"./ATNStateType":312,"./ActionTransition":314,"./AtomTransition":316,"./BasicBlockStartState":317,"./BasicState":318,"./BlockEndState":319,"./BlockStartState":320,"./DecisionState":325,"./EpsilonTransition":326,"./InvalidState":328,"./LexerChannelAction":332,"./LexerCustomAction":333,"./LexerModeAction":335,"./LexerMoreAction":336,"./LexerPopModeAction":337,"./LexerPushModeAction":338,"./LexerSkipAction":339,"./LexerTypeAction":340,"./LoopEndState":342,"./NotSetTransition":343,"./ParserATNSimulator":346,"./PlusBlockStartState":347,"./PlusLoopbackState":348,"./PrecedencePredicateTransition":349,"./PredicateTransition":351,"./RangeTransition":356,"./RuleStartState":357,"./RuleStopState":358,"./RuleTransition":359,"./SetTransition":361,"./StarBlockStartState":363,"./StarLoopEntryState":364,"./StarLoopbackState":365,"./TokensStartState":366,"./WildcardTransition":368}],310:[function(require,module,exports){
|
|
62440
62594
|
"use strict";
|
|
62441
62595
|
/*!
|
|
62442
62596
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62500,7 +62654,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
62500
62654
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
62501
62655
|
exports.ATNSimulator = ATNSimulator;
|
|
62502
62656
|
|
|
62503
|
-
},{"../Decorators":
|
|
62657
|
+
},{"../Decorators":272,"../dfa/DFAState":372,"./ATNConfigSet":307,"./PredictionContext":352}],311:[function(require,module,exports){
|
|
62504
62658
|
"use strict";
|
|
62505
62659
|
/*!
|
|
62506
62660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62687,7 +62841,7 @@ exports.ATNState = ATNState;
|
|
|
62687
62841
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
62688
62842
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
62689
62843
|
|
|
62690
|
-
},{"../Decorators":
|
|
62844
|
+
},{"../Decorators":272}],312:[function(require,module,exports){
|
|
62691
62845
|
"use strict";
|
|
62692
62846
|
/*!
|
|
62693
62847
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62713,7 +62867,7 @@ var ATNStateType;
|
|
|
62713
62867
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
62714
62868
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
62715
62869
|
|
|
62716
|
-
},{}],
|
|
62870
|
+
},{}],313:[function(require,module,exports){
|
|
62717
62871
|
"use strict";
|
|
62718
62872
|
/*!
|
|
62719
62873
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62733,7 +62887,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
62733
62887
|
}
|
|
62734
62888
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
62735
62889
|
|
|
62736
|
-
},{"./Transition":
|
|
62890
|
+
},{"./Transition":367}],314:[function(require,module,exports){
|
|
62737
62891
|
"use strict";
|
|
62738
62892
|
/*!
|
|
62739
62893
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62789,7 +62943,7 @@ ActionTransition = __decorate([
|
|
|
62789
62943
|
], ActionTransition);
|
|
62790
62944
|
exports.ActionTransition = ActionTransition;
|
|
62791
62945
|
|
|
62792
|
-
},{"../Decorators":
|
|
62946
|
+
},{"../Decorators":272,"./Transition":367}],315:[function(require,module,exports){
|
|
62793
62947
|
"use strict";
|
|
62794
62948
|
/*!
|
|
62795
62949
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62876,7 +63030,7 @@ AmbiguityInfo = __decorate([
|
|
|
62876
63030
|
], AmbiguityInfo);
|
|
62877
63031
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
62878
63032
|
|
|
62879
|
-
},{"../Decorators":
|
|
63033
|
+
},{"../Decorators":272,"./DecisionEventInfo":323}],316:[function(require,module,exports){
|
|
62880
63034
|
"use strict";
|
|
62881
63035
|
/*!
|
|
62882
63036
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62934,7 +63088,7 @@ AtomTransition = __decorate([
|
|
|
62934
63088
|
], AtomTransition);
|
|
62935
63089
|
exports.AtomTransition = AtomTransition;
|
|
62936
63090
|
|
|
62937
|
-
},{"../Decorators":
|
|
63091
|
+
},{"../Decorators":272,"../misc/IntervalSet":385,"./Transition":367}],317:[function(require,module,exports){
|
|
62938
63092
|
"use strict";
|
|
62939
63093
|
/*!
|
|
62940
63094
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62966,7 +63120,7 @@ __decorate([
|
|
|
62966
63120
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
62967
63121
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
62968
63122
|
|
|
62969
|
-
},{"../Decorators":
|
|
63123
|
+
},{"../Decorators":272,"./ATNStateType":312,"./BlockStartState":320}],318:[function(require,module,exports){
|
|
62970
63124
|
"use strict";
|
|
62971
63125
|
/*!
|
|
62972
63126
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62998,7 +63152,7 @@ __decorate([
|
|
|
62998
63152
|
], BasicState.prototype, "stateType", null);
|
|
62999
63153
|
exports.BasicState = BasicState;
|
|
63000
63154
|
|
|
63001
|
-
},{"../Decorators":
|
|
63155
|
+
},{"../Decorators":272,"./ATNState":311,"./ATNStateType":312}],319:[function(require,module,exports){
|
|
63002
63156
|
"use strict";
|
|
63003
63157
|
/*!
|
|
63004
63158
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63027,7 +63181,7 @@ __decorate([
|
|
|
63027
63181
|
], BlockEndState.prototype, "stateType", null);
|
|
63028
63182
|
exports.BlockEndState = BlockEndState;
|
|
63029
63183
|
|
|
63030
|
-
},{"../Decorators":
|
|
63184
|
+
},{"../Decorators":272,"./ATNState":311,"./ATNStateType":312}],320:[function(require,module,exports){
|
|
63031
63185
|
"use strict";
|
|
63032
63186
|
/*!
|
|
63033
63187
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63041,7 +63195,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
63041
63195
|
}
|
|
63042
63196
|
exports.BlockStartState = BlockStartState;
|
|
63043
63197
|
|
|
63044
|
-
},{"./DecisionState":
|
|
63198
|
+
},{"./DecisionState":325}],321:[function(require,module,exports){
|
|
63045
63199
|
"use strict";
|
|
63046
63200
|
/*!
|
|
63047
63201
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63111,7 +63265,7 @@ __decorate([
|
|
|
63111
63265
|
], ConflictInfo.prototype, "hashCode", null);
|
|
63112
63266
|
exports.ConflictInfo = ConflictInfo;
|
|
63113
63267
|
|
|
63114
|
-
},{"../Decorators":
|
|
63268
|
+
},{"../Decorators":272,"../misc/Utils":391}],322:[function(require,module,exports){
|
|
63115
63269
|
"use strict";
|
|
63116
63270
|
/*!
|
|
63117
63271
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63171,7 +63325,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
63171
63325
|
], ContextSensitivityInfo);
|
|
63172
63326
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
63173
63327
|
|
|
63174
|
-
},{"../Decorators":
|
|
63328
|
+
},{"../Decorators":272,"./DecisionEventInfo":323}],323:[function(require,module,exports){
|
|
63175
63329
|
"use strict";
|
|
63176
63330
|
/*!
|
|
63177
63331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63223,7 +63377,7 @@ DecisionEventInfo = __decorate([
|
|
|
63223
63377
|
], DecisionEventInfo);
|
|
63224
63378
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
63225
63379
|
|
|
63226
|
-
},{"../Decorators":
|
|
63380
|
+
},{"../Decorators":272}],324:[function(require,module,exports){
|
|
63227
63381
|
"use strict";
|
|
63228
63382
|
/*!
|
|
63229
63383
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63436,7 +63590,7 @@ __decorate([
|
|
|
63436
63590
|
], DecisionInfo.prototype, "toString", null);
|
|
63437
63591
|
exports.DecisionInfo = DecisionInfo;
|
|
63438
63592
|
|
|
63439
|
-
},{"../Decorators":
|
|
63593
|
+
},{"../Decorators":272}],325:[function(require,module,exports){
|
|
63440
63594
|
"use strict";
|
|
63441
63595
|
/*!
|
|
63442
63596
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63456,7 +63610,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
63456
63610
|
}
|
|
63457
63611
|
exports.DecisionState = DecisionState;
|
|
63458
63612
|
|
|
63459
|
-
},{"./ATNState":
|
|
63613
|
+
},{"./ATNState":311}],326:[function(require,module,exports){
|
|
63460
63614
|
"use strict";
|
|
63461
63615
|
/*!
|
|
63462
63616
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63522,7 +63676,7 @@ EpsilonTransition = __decorate([
|
|
|
63522
63676
|
], EpsilonTransition);
|
|
63523
63677
|
exports.EpsilonTransition = EpsilonTransition;
|
|
63524
63678
|
|
|
63525
|
-
},{"../Decorators":
|
|
63679
|
+
},{"../Decorators":272,"./Transition":367}],327:[function(require,module,exports){
|
|
63526
63680
|
"use strict";
|
|
63527
63681
|
/*!
|
|
63528
63682
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63575,7 +63729,7 @@ ErrorInfo = __decorate([
|
|
|
63575
63729
|
], ErrorInfo);
|
|
63576
63730
|
exports.ErrorInfo = ErrorInfo;
|
|
63577
63731
|
|
|
63578
|
-
},{"../Decorators":
|
|
63732
|
+
},{"../Decorators":272,"./DecisionEventInfo":323}],328:[function(require,module,exports){
|
|
63579
63733
|
"use strict";
|
|
63580
63734
|
/*!
|
|
63581
63735
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63606,7 +63760,7 @@ __decorate([
|
|
|
63606
63760
|
], InvalidState.prototype, "stateType", null);
|
|
63607
63761
|
exports.InvalidState = InvalidState;
|
|
63608
63762
|
|
|
63609
|
-
},{"../Decorators":
|
|
63763
|
+
},{"../Decorators":272,"./ATNStateType":312,"./BasicState":318}],329:[function(require,module,exports){
|
|
63610
63764
|
"use strict";
|
|
63611
63765
|
/*!
|
|
63612
63766
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63828,7 +63982,7 @@ LL1Analyzer = __decorate([
|
|
|
63828
63982
|
], LL1Analyzer);
|
|
63829
63983
|
exports.LL1Analyzer = LL1Analyzer;
|
|
63830
63984
|
|
|
63831
|
-
},{"../Decorators":
|
|
63985
|
+
},{"../Decorators":272,"../Token":297,"../misc/Array2DHashSet":376,"../misc/BitSet":379,"../misc/IntervalSet":385,"../misc/ObjectEqualityComparator":388,"./ATNConfig":306,"./AbstractPredicateTransition":313,"./NotSetTransition":343,"./PredictionContext":352,"./RuleStopState":358,"./RuleTransition":359,"./WildcardTransition":368}],330:[function(require,module,exports){
|
|
63832
63986
|
"use strict";
|
|
63833
63987
|
/*!
|
|
63834
63988
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64545,7 +64699,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
64545
64699
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
64546
64700
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
64547
64701
|
|
|
64548
|
-
},{"../Decorators":
|
|
64702
|
+
},{"../Decorators":272,"../IntStream":278,"../Lexer":280,"../LexerNoViableAltException":282,"../Token":297,"../dfa/AcceptStateInfo":369,"../dfa/DFAState":372,"../misc/Interval":384,"./ATN":305,"./ATNConfig":306,"./ATNConfigSet":307,"./ATNSimulator":310,"./LexerActionExecutor":331,"./OrderedATNConfigSet":344,"./PredictionContext":352,"./RuleStopState":358,"assert":415}],331:[function(require,module,exports){
|
|
64549
64703
|
"use strict";
|
|
64550
64704
|
/*!
|
|
64551
64705
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64746,7 +64900,7 @@ LexerActionExecutor = __decorate([
|
|
|
64746
64900
|
], LexerActionExecutor);
|
|
64747
64901
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
64748
64902
|
|
|
64749
|
-
},{"../Decorators":
|
|
64903
|
+
},{"../Decorators":272,"../misc/ArrayEqualityComparator":377,"../misc/MurmurHash":387,"./LexerIndexedCustomAction":334}],332:[function(require,module,exports){
|
|
64750
64904
|
"use strict";
|
|
64751
64905
|
/*!
|
|
64752
64906
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64851,7 +65005,7 @@ __decorate([
|
|
|
64851
65005
|
], LexerChannelAction.prototype, "toString", null);
|
|
64852
65006
|
exports.LexerChannelAction = LexerChannelAction;
|
|
64853
65007
|
|
|
64854
|
-
},{"../Decorators":
|
|
65008
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],333:[function(require,module,exports){
|
|
64855
65009
|
"use strict";
|
|
64856
65010
|
/*!
|
|
64857
65011
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64980,7 +65134,7 @@ __decorate([
|
|
|
64980
65134
|
], LexerCustomAction.prototype, "equals", null);
|
|
64981
65135
|
exports.LexerCustomAction = LexerCustomAction;
|
|
64982
65136
|
|
|
64983
|
-
},{"../Decorators":
|
|
65137
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],334:[function(require,module,exports){
|
|
64984
65138
|
"use strict";
|
|
64985
65139
|
/*!
|
|
64986
65140
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65115,7 +65269,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
65115
65269
|
], LexerIndexedCustomAction);
|
|
65116
65270
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
65117
65271
|
|
|
65118
|
-
},{"../Decorators":
|
|
65272
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],335:[function(require,module,exports){
|
|
65119
65273
|
"use strict";
|
|
65120
65274
|
/*!
|
|
65121
65275
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65220,7 +65374,7 @@ __decorate([
|
|
|
65220
65374
|
], LexerModeAction.prototype, "toString", null);
|
|
65221
65375
|
exports.LexerModeAction = LexerModeAction;
|
|
65222
65376
|
|
|
65223
|
-
},{"../Decorators":
|
|
65377
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],336:[function(require,module,exports){
|
|
65224
65378
|
"use strict";
|
|
65225
65379
|
/*!
|
|
65226
65380
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65316,7 +65470,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
65316
65470
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
65317
65471
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
65318
65472
|
|
|
65319
|
-
},{"../Decorators":
|
|
65473
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],337:[function(require,module,exports){
|
|
65320
65474
|
"use strict";
|
|
65321
65475
|
/*!
|
|
65322
65476
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65412,7 +65566,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
65412
65566
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
65413
65567
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
65414
65568
|
|
|
65415
|
-
},{"../Decorators":
|
|
65569
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],338:[function(require,module,exports){
|
|
65416
65570
|
"use strict";
|
|
65417
65571
|
/*!
|
|
65418
65572
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65517,7 +65671,7 @@ __decorate([
|
|
|
65517
65671
|
], LexerPushModeAction.prototype, "toString", null);
|
|
65518
65672
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
65519
65673
|
|
|
65520
|
-
},{"../Decorators":
|
|
65674
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],339:[function(require,module,exports){
|
|
65521
65675
|
"use strict";
|
|
65522
65676
|
/*!
|
|
65523
65677
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65613,7 +65767,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
65613
65767
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
65614
65768
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
65615
65769
|
|
|
65616
|
-
},{"../Decorators":
|
|
65770
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],340:[function(require,module,exports){
|
|
65617
65771
|
"use strict";
|
|
65618
65772
|
/*!
|
|
65619
65773
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65717,7 +65871,7 @@ __decorate([
|
|
|
65717
65871
|
], LexerTypeAction.prototype, "toString", null);
|
|
65718
65872
|
exports.LexerTypeAction = LexerTypeAction;
|
|
65719
65873
|
|
|
65720
|
-
},{"../Decorators":
|
|
65874
|
+
},{"../Decorators":272,"../misc/MurmurHash":387}],341:[function(require,module,exports){
|
|
65721
65875
|
"use strict";
|
|
65722
65876
|
/*!
|
|
65723
65877
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65769,7 +65923,7 @@ LookaheadEventInfo = __decorate([
|
|
|
65769
65923
|
], LookaheadEventInfo);
|
|
65770
65924
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
65771
65925
|
|
|
65772
|
-
},{"../Decorators":
|
|
65926
|
+
},{"../Decorators":272,"./DecisionEventInfo":323}],342:[function(require,module,exports){
|
|
65773
65927
|
"use strict";
|
|
65774
65928
|
/*!
|
|
65775
65929
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65798,7 +65952,7 @@ __decorate([
|
|
|
65798
65952
|
], LoopEndState.prototype, "stateType", null);
|
|
65799
65953
|
exports.LoopEndState = LoopEndState;
|
|
65800
65954
|
|
|
65801
|
-
},{"../Decorators":
|
|
65955
|
+
},{"../Decorators":272,"./ATNState":311,"./ATNStateType":312}],343:[function(require,module,exports){
|
|
65802
65956
|
"use strict";
|
|
65803
65957
|
/*!
|
|
65804
65958
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65847,7 +66001,7 @@ NotSetTransition = __decorate([
|
|
|
65847
66001
|
], NotSetTransition);
|
|
65848
66002
|
exports.NotSetTransition = NotSetTransition;
|
|
65849
66003
|
|
|
65850
|
-
},{"../Decorators":
|
|
66004
|
+
},{"../Decorators":272,"./SetTransition":361}],344:[function(require,module,exports){
|
|
65851
66005
|
"use strict";
|
|
65852
66006
|
/*!
|
|
65853
66007
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65902,7 +66056,7 @@ __decorate([
|
|
|
65902
66056
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
65903
66057
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
65904
66058
|
|
|
65905
|
-
},{"../Decorators":
|
|
66059
|
+
},{"../Decorators":272,"./ATNConfigSet":307}],345:[function(require,module,exports){
|
|
65906
66060
|
"use strict";
|
|
65907
66061
|
/*!
|
|
65908
66062
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -66064,7 +66218,7 @@ ParseInfo = __decorate([
|
|
|
66064
66218
|
], ParseInfo);
|
|
66065
66219
|
exports.ParseInfo = ParseInfo;
|
|
66066
66220
|
|
|
66067
|
-
},{"../Decorators":
|
|
66221
|
+
},{"../Decorators":272}],346:[function(require,module,exports){
|
|
66068
66222
|
"use strict";
|
|
66069
66223
|
/*!
|
|
66070
66224
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68337,7 +68491,7 @@ ParserATNSimulator = __decorate([
|
|
|
68337
68491
|
], ParserATNSimulator);
|
|
68338
68492
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
68339
68493
|
|
|
68340
|
-
},{"../Decorators":
|
|
68494
|
+
},{"../Decorators":272,"../IntStream":278,"../NoViableAltException":284,"../ParserRuleContext":288,"../Token":297,"../VocabularyImpl":303,"../dfa/AcceptStateInfo":369,"../dfa/DFAState":372,"../misc/Array2DHashSet":376,"../misc/Arrays":378,"../misc/BitSet":379,"../misc/IntegerList":382,"../misc/Interval":384,"../misc/ObjectEqualityComparator":388,"./ATN":305,"./ATNConfig":306,"./ATNConfigSet":307,"./ATNSimulator":310,"./ATNStateType":312,"./ActionTransition":314,"./AtomTransition":316,"./ConflictInfo":321,"./DecisionState":325,"./NotSetTransition":343,"./PredictionContext":352,"./PredictionContextCache":353,"./PredictionMode":354,"./RuleStopState":358,"./RuleTransition":359,"./SemanticContext":360,"./SetTransition":361,"./SimulatorState":362,"assert":415}],347:[function(require,module,exports){
|
|
68341
68495
|
"use strict";
|
|
68342
68496
|
/*!
|
|
68343
68497
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68370,7 +68524,7 @@ __decorate([
|
|
|
68370
68524
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
68371
68525
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
68372
68526
|
|
|
68373
|
-
},{"../Decorators":
|
|
68527
|
+
},{"../Decorators":272,"./ATNStateType":312,"./BlockStartState":320}],348:[function(require,module,exports){
|
|
68374
68528
|
"use strict";
|
|
68375
68529
|
/*!
|
|
68376
68530
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68401,7 +68555,7 @@ __decorate([
|
|
|
68401
68555
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
68402
68556
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
68403
68557
|
|
|
68404
|
-
},{"../Decorators":
|
|
68558
|
+
},{"../Decorators":272,"./ATNStateType":312,"./DecisionState":325}],349:[function(require,module,exports){
|
|
68405
68559
|
"use strict";
|
|
68406
68560
|
/*!
|
|
68407
68561
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68464,7 +68618,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
68464
68618
|
], PrecedencePredicateTransition);
|
|
68465
68619
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
68466
68620
|
|
|
68467
|
-
},{"../Decorators":
|
|
68621
|
+
},{"../Decorators":272,"./AbstractPredicateTransition":313,"./SemanticContext":360}],350:[function(require,module,exports){
|
|
68468
68622
|
"use strict";
|
|
68469
68623
|
/*!
|
|
68470
68624
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68527,7 +68681,7 @@ PredicateEvalInfo = __decorate([
|
|
|
68527
68681
|
], PredicateEvalInfo);
|
|
68528
68682
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
68529
68683
|
|
|
68530
|
-
},{"../Decorators":
|
|
68684
|
+
},{"../Decorators":272,"./DecisionEventInfo":323}],351:[function(require,module,exports){
|
|
68531
68685
|
"use strict";
|
|
68532
68686
|
/*!
|
|
68533
68687
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -68593,7 +68747,7 @@ PredicateTransition = __decorate([
|
|
|
68593
68747
|
], PredicateTransition);
|
|
68594
68748
|
exports.PredicateTransition = PredicateTransition;
|
|
68595
68749
|
|
|
68596
|
-
},{"../Decorators":
|
|
68750
|
+
},{"../Decorators":272,"./AbstractPredicateTransition":313,"./SemanticContext":360}],352:[function(require,module,exports){
|
|
68597
68751
|
"use strict";
|
|
68598
68752
|
/*!
|
|
68599
68753
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69284,7 +69438,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
69284
69438
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
69285
69439
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
69286
69440
|
|
|
69287
|
-
},{"../Decorators":
|
|
69441
|
+
},{"../Decorators":272,"../misc/Array2DHashMap":375,"../misc/Array2DHashSet":376,"../misc/Arrays":378,"../misc/MurmurHash":387,"./PredictionContextCache":353,"assert":415}],353:[function(require,module,exports){
|
|
69288
69442
|
"use strict";
|
|
69289
69443
|
/*!
|
|
69290
69444
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69425,7 +69579,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
69425
69579
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
69426
69580
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
69427
69581
|
|
|
69428
|
-
},{"../Decorators":
|
|
69582
|
+
},{"../Decorators":272,"../misc/Array2DHashMap":375,"../misc/ObjectEqualityComparator":388,"./PredictionContext":352,"assert":415}],354:[function(require,module,exports){
|
|
69429
69583
|
"use strict";
|
|
69430
69584
|
/*!
|
|
69431
69585
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69586,7 +69740,7 @@ var PredictionMode;
|
|
|
69586
69740
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
69587
69741
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
69588
69742
|
|
|
69589
|
-
},{"../Decorators":
|
|
69743
|
+
},{"../Decorators":272,"../misc/Array2DHashMap":375,"../misc/MurmurHash":387,"./RuleStopState":358}],355:[function(require,module,exports){
|
|
69590
69744
|
(function (process){(function (){
|
|
69591
69745
|
"use strict";
|
|
69592
69746
|
/*!
|
|
@@ -69855,7 +70009,7 @@ __decorate([
|
|
|
69855
70009
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
69856
70010
|
|
|
69857
70011
|
}).call(this)}).call(this,require('_process'))
|
|
69858
|
-
},{"../Decorators":
|
|
70012
|
+
},{"../Decorators":272,"./ATN":305,"./ATNSimulator":310,"./AmbiguityInfo":315,"./ContextSensitivityInfo":322,"./DecisionInfo":324,"./ErrorInfo":327,"./LookaheadEventInfo":341,"./ParserATNSimulator":346,"./PredicateEvalInfo":350,"./SemanticContext":360,"./SimulatorState":362,"_process":474}],356:[function(require,module,exports){
|
|
69859
70013
|
"use strict";
|
|
69860
70014
|
/*!
|
|
69861
70015
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69913,7 +70067,7 @@ RangeTransition = __decorate([
|
|
|
69913
70067
|
], RangeTransition);
|
|
69914
70068
|
exports.RangeTransition = RangeTransition;
|
|
69915
70069
|
|
|
69916
|
-
},{"../Decorators":
|
|
70070
|
+
},{"../Decorators":272,"../misc/IntervalSet":385,"./Transition":367}],357:[function(require,module,exports){
|
|
69917
70071
|
"use strict";
|
|
69918
70072
|
/*!
|
|
69919
70073
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69946,7 +70100,7 @@ __decorate([
|
|
|
69946
70100
|
], RuleStartState.prototype, "stateType", null);
|
|
69947
70101
|
exports.RuleStartState = RuleStartState;
|
|
69948
70102
|
|
|
69949
|
-
},{"../Decorators":
|
|
70103
|
+
},{"../Decorators":272,"./ATNState":311,"./ATNStateType":312}],358:[function(require,module,exports){
|
|
69950
70104
|
"use strict";
|
|
69951
70105
|
/*!
|
|
69952
70106
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -69985,7 +70139,7 @@ __decorate([
|
|
|
69985
70139
|
], RuleStopState.prototype, "stateType", null);
|
|
69986
70140
|
exports.RuleStopState = RuleStopState;
|
|
69987
70141
|
|
|
69988
|
-
},{"../Decorators":
|
|
70142
|
+
},{"../Decorators":272,"./ATNState":311,"./ATNStateType":312}],359:[function(require,module,exports){
|
|
69989
70143
|
"use strict";
|
|
69990
70144
|
/*!
|
|
69991
70145
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70041,7 +70195,7 @@ RuleTransition = __decorate([
|
|
|
70041
70195
|
], RuleTransition);
|
|
70042
70196
|
exports.RuleTransition = RuleTransition;
|
|
70043
70197
|
|
|
70044
|
-
},{"../Decorators":
|
|
70198
|
+
},{"../Decorators":272,"./Transition":367}],360:[function(require,module,exports){
|
|
70045
70199
|
"use strict";
|
|
70046
70200
|
/*!
|
|
70047
70201
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70521,7 +70675,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
70521
70675
|
SemanticContext.OR = OR;
|
|
70522
70676
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
70523
70677
|
|
|
70524
|
-
},{"../Decorators":
|
|
70678
|
+
},{"../Decorators":272,"../misc/Array2DHashSet":376,"../misc/ArrayEqualityComparator":377,"../misc/MurmurHash":387,"../misc/ObjectEqualityComparator":388,"../misc/Utils":391}],361:[function(require,module,exports){
|
|
70525
70679
|
"use strict";
|
|
70526
70680
|
/*!
|
|
70527
70681
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70587,7 +70741,7 @@ SetTransition = __decorate([
|
|
|
70587
70741
|
], SetTransition);
|
|
70588
70742
|
exports.SetTransition = SetTransition;
|
|
70589
70743
|
|
|
70590
|
-
},{"../Decorators":
|
|
70744
|
+
},{"../Decorators":272,"../Token":297,"../misc/IntervalSet":385,"./Transition":367}],362:[function(require,module,exports){
|
|
70591
70745
|
"use strict";
|
|
70592
70746
|
/*!
|
|
70593
70747
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70623,7 +70777,7 @@ SimulatorState = __decorate([
|
|
|
70623
70777
|
], SimulatorState);
|
|
70624
70778
|
exports.SimulatorState = SimulatorState;
|
|
70625
70779
|
|
|
70626
|
-
},{"../Decorators":
|
|
70780
|
+
},{"../Decorators":272,"../ParserRuleContext":288}],363:[function(require,module,exports){
|
|
70627
70781
|
"use strict";
|
|
70628
70782
|
/*!
|
|
70629
70783
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70651,7 +70805,7 @@ __decorate([
|
|
|
70651
70805
|
], StarBlockStartState.prototype, "stateType", null);
|
|
70652
70806
|
exports.StarBlockStartState = StarBlockStartState;
|
|
70653
70807
|
|
|
70654
|
-
},{"../Decorators":
|
|
70808
|
+
},{"../Decorators":272,"./ATNStateType":312,"./BlockStartState":320}],364:[function(require,module,exports){
|
|
70655
70809
|
"use strict";
|
|
70656
70810
|
/*!
|
|
70657
70811
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70708,7 +70862,7 @@ __decorate([
|
|
|
70708
70862
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
70709
70863
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
70710
70864
|
|
|
70711
|
-
},{"../Decorators":
|
|
70865
|
+
},{"../Decorators":272,"../misc/BitSet":379,"./ATNStateType":312,"./DecisionState":325}],365:[function(require,module,exports){
|
|
70712
70866
|
"use strict";
|
|
70713
70867
|
/*!
|
|
70714
70868
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70739,7 +70893,7 @@ __decorate([
|
|
|
70739
70893
|
], StarLoopbackState.prototype, "stateType", null);
|
|
70740
70894
|
exports.StarLoopbackState = StarLoopbackState;
|
|
70741
70895
|
|
|
70742
|
-
},{"../Decorators":
|
|
70896
|
+
},{"../Decorators":272,"./ATNState":311,"./ATNStateType":312}],366:[function(require,module,exports){
|
|
70743
70897
|
"use strict";
|
|
70744
70898
|
/*!
|
|
70745
70899
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70768,7 +70922,7 @@ __decorate([
|
|
|
70768
70922
|
], TokensStartState.prototype, "stateType", null);
|
|
70769
70923
|
exports.TokensStartState = TokensStartState;
|
|
70770
70924
|
|
|
70771
|
-
},{"../Decorators":
|
|
70925
|
+
},{"../Decorators":272,"./ATNStateType":312,"./DecisionState":325}],367:[function(require,module,exports){
|
|
70772
70926
|
"use strict";
|
|
70773
70927
|
/*!
|
|
70774
70928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70842,7 +70996,7 @@ Transition = __decorate([
|
|
|
70842
70996
|
], Transition);
|
|
70843
70997
|
exports.Transition = Transition;
|
|
70844
70998
|
|
|
70845
|
-
},{"../Decorators":
|
|
70999
|
+
},{"../Decorators":272}],368:[function(require,module,exports){
|
|
70846
71000
|
"use strict";
|
|
70847
71001
|
/*!
|
|
70848
71002
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70890,7 +71044,7 @@ WildcardTransition = __decorate([
|
|
|
70890
71044
|
], WildcardTransition);
|
|
70891
71045
|
exports.WildcardTransition = WildcardTransition;
|
|
70892
71046
|
|
|
70893
|
-
},{"../Decorators":
|
|
71047
|
+
},{"../Decorators":272,"./Transition":367}],369:[function(require,module,exports){
|
|
70894
71048
|
"use strict";
|
|
70895
71049
|
/*!
|
|
70896
71050
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -70932,7 +71086,7 @@ class AcceptStateInfo {
|
|
|
70932
71086
|
}
|
|
70933
71087
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
70934
71088
|
|
|
70935
|
-
},{}],
|
|
71089
|
+
},{}],370:[function(require,module,exports){
|
|
70936
71090
|
"use strict";
|
|
70937
71091
|
/*!
|
|
70938
71092
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71107,7 +71261,7 @@ DFA = __decorate([
|
|
|
71107
71261
|
], DFA);
|
|
71108
71262
|
exports.DFA = DFA;
|
|
71109
71263
|
|
|
71110
|
-
},{"../Decorators":
|
|
71264
|
+
},{"../Decorators":272,"../VocabularyImpl":303,"../atn/ATNConfigSet":307,"../atn/StarLoopEntryState":364,"../misc/Array2DHashSet":376,"../misc/ObjectEqualityComparator":388,"./DFASerializer":371,"./DFAState":372,"./LexerDFASerializer":373}],371:[function(require,module,exports){
|
|
71111
71265
|
"use strict";
|
|
71112
71266
|
/*!
|
|
71113
71267
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71249,7 +71403,7 @@ __decorate([
|
|
|
71249
71403
|
], DFASerializer.prototype, "toString", null);
|
|
71250
71404
|
exports.DFASerializer = DFASerializer;
|
|
71251
71405
|
|
|
71252
|
-
},{"../Decorators":
|
|
71406
|
+
},{"../Decorators":272,"../Recognizer":292,"../VocabularyImpl":303,"../atn/ATNSimulator":310,"../atn/PredictionContext":352}],372:[function(require,module,exports){
|
|
71253
71407
|
"use strict";
|
|
71254
71408
|
/*!
|
|
71255
71409
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71480,7 +71634,7 @@ exports.DFAState = DFAState;
|
|
|
71480
71634
|
DFAState.PredPrediction = PredPrediction;
|
|
71481
71635
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
71482
71636
|
|
|
71483
|
-
},{"../Decorators":
|
|
71637
|
+
},{"../Decorators":272,"../atn/ATN":305,"../atn/PredictionContext":352,"../misc/BitSet":379,"../misc/MurmurHash":387,"assert":415}],373:[function(require,module,exports){
|
|
71484
71638
|
"use strict";
|
|
71485
71639
|
/*!
|
|
71486
71640
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71517,7 +71671,7 @@ LexerDFASerializer = __decorate([
|
|
|
71517
71671
|
], LexerDFASerializer);
|
|
71518
71672
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
71519
71673
|
|
|
71520
|
-
},{"../Decorators":
|
|
71674
|
+
},{"../Decorators":272,"../VocabularyImpl":303,"./DFASerializer":371}],374:[function(require,module,exports){
|
|
71521
71675
|
"use strict";
|
|
71522
71676
|
/*!
|
|
71523
71677
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71583,7 +71737,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
71583
71737
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
71584
71738
|
__exportStar(require("./WritableToken"), exports);
|
|
71585
71739
|
|
|
71586
|
-
},{"./ANTLRErrorListener":
|
|
71740
|
+
},{"./ANTLRErrorListener":259,"./ANTLRErrorStrategy":260,"./ANTLRInputStream":261,"./BailErrorStrategy":262,"./BufferedTokenStream":263,"./CharStream":264,"./CharStreams":265,"./CodePointBuffer":266,"./CodePointCharStream":267,"./CommonToken":268,"./CommonTokenFactory":269,"./CommonTokenStream":270,"./ConsoleErrorListener":271,"./DefaultErrorStrategy":273,"./Dependents":274,"./DiagnosticErrorListener":275,"./FailedPredicateException":276,"./InputMismatchException":277,"./IntStream":278,"./InterpreterRuleContext":279,"./Lexer":280,"./LexerInterpreter":281,"./LexerNoViableAltException":282,"./ListTokenSource":283,"./NoViableAltException":284,"./Parser":285,"./ParserErrorListener":286,"./ParserInterpreter":287,"./ParserRuleContext":288,"./ProxyErrorListener":289,"./ProxyParserErrorListener":290,"./RecognitionException":291,"./Recognizer":292,"./RuleContext":293,"./RuleContextWithAltNum":294,"./RuleDependency":295,"./RuleVersion":296,"./Token":297,"./TokenFactory":298,"./TokenSource":299,"./TokenStream":300,"./TokenStreamRewriter":301,"./Vocabulary":302,"./VocabularyImpl":303,"./WritableToken":304}],375:[function(require,module,exports){
|
|
71587
71741
|
"use strict";
|
|
71588
71742
|
/*!
|
|
71589
71743
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -71666,7 +71820,7 @@ class Array2DHashMap {
|
|
|
71666
71820
|
}
|
|
71667
71821
|
exports.Array2DHashMap = Array2DHashMap;
|
|
71668
71822
|
|
|
71669
|
-
},{"./Array2DHashSet":
|
|
71823
|
+
},{"./Array2DHashSet":376}],376:[function(require,module,exports){
|
|
71670
71824
|
"use strict";
|
|
71671
71825
|
/*!
|
|
71672
71826
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72033,7 +72187,7 @@ __decorate([
|
|
|
72033
72187
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
72034
72188
|
exports.Array2DHashSet = Array2DHashSet;
|
|
72035
72189
|
|
|
72036
|
-
},{"../Decorators":
|
|
72190
|
+
},{"../Decorators":272,"./DefaultEqualityComparator":381,"./MurmurHash":387,"assert":415}],377:[function(require,module,exports){
|
|
72037
72191
|
"use strict";
|
|
72038
72192
|
/*!
|
|
72039
72193
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72105,7 +72259,7 @@ __decorate([
|
|
|
72105
72259
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
72106
72260
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
72107
72261
|
|
|
72108
|
-
},{"../Decorators":
|
|
72262
|
+
},{"../Decorators":272,"./MurmurHash":387,"./ObjectEqualityComparator":388}],378:[function(require,module,exports){
|
|
72109
72263
|
"use strict";
|
|
72110
72264
|
/*!
|
|
72111
72265
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72175,7 +72329,7 @@ var Arrays;
|
|
|
72175
72329
|
Arrays.toString = toString;
|
|
72176
72330
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
72177
72331
|
|
|
72178
|
-
},{}],
|
|
72332
|
+
},{}],379:[function(require,module,exports){
|
|
72179
72333
|
"use strict";
|
|
72180
72334
|
/*!
|
|
72181
72335
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72847,7 +73001,7 @@ class BitSetIterator {
|
|
|
72847
73001
|
[Symbol.iterator]() { return this; }
|
|
72848
73002
|
}
|
|
72849
73003
|
|
|
72850
|
-
},{"./MurmurHash":
|
|
73004
|
+
},{"./MurmurHash":387,"util":479}],380:[function(require,module,exports){
|
|
72851
73005
|
"use strict";
|
|
72852
73006
|
/*!
|
|
72853
73007
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72868,7 +73022,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
72868
73022
|
}
|
|
72869
73023
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
72870
73024
|
|
|
72871
|
-
},{}],
|
|
73025
|
+
},{}],381:[function(require,module,exports){
|
|
72872
73026
|
"use strict";
|
|
72873
73027
|
/*!
|
|
72874
73028
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -72939,7 +73093,7 @@ __decorate([
|
|
|
72939
73093
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
72940
73094
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
72941
73095
|
|
|
72942
|
-
},{"../Decorators":
|
|
73096
|
+
},{"../Decorators":272,"./MurmurHash":387,"./ObjectEqualityComparator":388}],382:[function(require,module,exports){
|
|
72943
73097
|
"use strict";
|
|
72944
73098
|
/*!
|
|
72945
73099
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73233,7 +73387,7 @@ __decorate([
|
|
|
73233
73387
|
], IntegerList.prototype, "toString", null);
|
|
73234
73388
|
exports.IntegerList = IntegerList;
|
|
73235
73389
|
|
|
73236
|
-
},{"../Decorators":
|
|
73390
|
+
},{"../Decorators":272,"./Arrays":378}],383:[function(require,module,exports){
|
|
73237
73391
|
"use strict";
|
|
73238
73392
|
/*!
|
|
73239
73393
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73263,7 +73417,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
73263
73417
|
}
|
|
73264
73418
|
exports.IntegerStack = IntegerStack;
|
|
73265
73419
|
|
|
73266
|
-
},{"./IntegerList":
|
|
73420
|
+
},{"./IntegerList":382}],384:[function(require,module,exports){
|
|
73267
73421
|
"use strict";
|
|
73268
73422
|
/*!
|
|
73269
73423
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -73406,7 +73560,7 @@ __decorate([
|
|
|
73406
73560
|
], Interval.prototype, "toString", null);
|
|
73407
73561
|
exports.Interval = Interval;
|
|
73408
73562
|
|
|
73409
|
-
},{"../Decorators":
|
|
73563
|
+
},{"../Decorators":272}],385:[function(require,module,exports){
|
|
73410
73564
|
"use strict";
|
|
73411
73565
|
/*!
|
|
73412
73566
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74052,7 +74206,7 @@ __decorate([
|
|
|
74052
74206
|
], IntervalSet, "subtract", null);
|
|
74053
74207
|
exports.IntervalSet = IntervalSet;
|
|
74054
74208
|
|
|
74055
|
-
},{"../Decorators":
|
|
74209
|
+
},{"../Decorators":272,"../Lexer":280,"../Token":297,"./ArrayEqualityComparator":377,"./IntegerList":382,"./Interval":384,"./MurmurHash":387}],386:[function(require,module,exports){
|
|
74056
74210
|
"use strict";
|
|
74057
74211
|
/*!
|
|
74058
74212
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74085,7 +74239,7 @@ class MultiMap extends Map {
|
|
|
74085
74239
|
}
|
|
74086
74240
|
exports.MultiMap = MultiMap;
|
|
74087
74241
|
|
|
74088
|
-
},{}],
|
|
74242
|
+
},{}],387:[function(require,module,exports){
|
|
74089
74243
|
"use strict";
|
|
74090
74244
|
/*!
|
|
74091
74245
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74200,7 +74354,7 @@ var MurmurHash;
|
|
|
74200
74354
|
}
|
|
74201
74355
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
74202
74356
|
|
|
74203
|
-
},{}],
|
|
74357
|
+
},{}],388:[function(require,module,exports){
|
|
74204
74358
|
"use strict";
|
|
74205
74359
|
/*!
|
|
74206
74360
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74259,7 +74413,7 @@ __decorate([
|
|
|
74259
74413
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
74260
74414
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
74261
74415
|
|
|
74262
|
-
},{"../Decorators":
|
|
74416
|
+
},{"../Decorators":272}],389:[function(require,module,exports){
|
|
74263
74417
|
"use strict";
|
|
74264
74418
|
/*!
|
|
74265
74419
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74288,7 +74442,7 @@ class ParseCancellationException extends Error {
|
|
|
74288
74442
|
}
|
|
74289
74443
|
exports.ParseCancellationException = ParseCancellationException;
|
|
74290
74444
|
|
|
74291
|
-
},{}],
|
|
74445
|
+
},{}],390:[function(require,module,exports){
|
|
74292
74446
|
"use strict";
|
|
74293
74447
|
/*!
|
|
74294
74448
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74342,7 +74496,7 @@ class UUID {
|
|
|
74342
74496
|
}
|
|
74343
74497
|
exports.UUID = UUID;
|
|
74344
74498
|
|
|
74345
|
-
},{"./MurmurHash":
|
|
74499
|
+
},{"./MurmurHash":387}],391:[function(require,module,exports){
|
|
74346
74500
|
"use strict";
|
|
74347
74501
|
/*!
|
|
74348
74502
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74517,7 +74671,7 @@ exports.toCharArray = toCharArray;
|
|
|
74517
74671
|
// return s;
|
|
74518
74672
|
// }
|
|
74519
74673
|
|
|
74520
|
-
},{}],
|
|
74674
|
+
},{}],392:[function(require,module,exports){
|
|
74521
74675
|
"use strict";
|
|
74522
74676
|
/*!
|
|
74523
74677
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74662,7 +74816,7 @@ __decorate([
|
|
|
74662
74816
|
], AbstractParseTreeVisitor.prototype, "shouldVisitNextChild", null);
|
|
74663
74817
|
exports.AbstractParseTreeVisitor = AbstractParseTreeVisitor;
|
|
74664
74818
|
|
|
74665
|
-
},{"../Decorators":
|
|
74819
|
+
},{"../Decorators":272}],393:[function(require,module,exports){
|
|
74666
74820
|
"use strict";
|
|
74667
74821
|
/*!
|
|
74668
74822
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74698,7 +74852,7 @@ __decorate([
|
|
|
74698
74852
|
], ErrorNode.prototype, "accept", null);
|
|
74699
74853
|
exports.ErrorNode = ErrorNode;
|
|
74700
74854
|
|
|
74701
|
-
},{"../Decorators":
|
|
74855
|
+
},{"../Decorators":272,"./TerminalNode":395}],394:[function(require,module,exports){
|
|
74702
74856
|
"use strict";
|
|
74703
74857
|
/*!
|
|
74704
74858
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74710,7 +74864,7 @@ class RuleNode {
|
|
|
74710
74864
|
}
|
|
74711
74865
|
exports.RuleNode = RuleNode;
|
|
74712
74866
|
|
|
74713
|
-
},{}],
|
|
74867
|
+
},{}],395:[function(require,module,exports){
|
|
74714
74868
|
"use strict";
|
|
74715
74869
|
/*!
|
|
74716
74870
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -74802,7 +74956,7 @@ __decorate([
|
|
|
74802
74956
|
], TerminalNode.prototype, "toString", null);
|
|
74803
74957
|
exports.TerminalNode = TerminalNode;
|
|
74804
74958
|
|
|
74805
|
-
},{"../Decorators":
|
|
74959
|
+
},{"../Decorators":272,"../Token":297,"../misc/Interval":384}],396:[function(require,module,exports){
|
|
74806
74960
|
"use strict";
|
|
74807
74961
|
/*!
|
|
74808
74962
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75046,7 +75200,7 @@ __decorate([
|
|
|
75046
75200
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
75047
75201
|
exports.Trees = Trees;
|
|
75048
75202
|
|
|
75049
|
-
},{"../CommonToken":
|
|
75203
|
+
},{"../CommonToken":268,"../Decorators":272,"../Parser":285,"../ParserRuleContext":288,"../Token":297,"../atn/ATN":305,"../misc/Utils":391,"./ErrorNode":393,"./RuleNode":394,"./TerminalNode":395}],397:[function(require,module,exports){
|
|
75050
75204
|
"use strict";
|
|
75051
75205
|
/*!
|
|
75052
75206
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75070,7 +75224,7 @@ class Chunk {
|
|
|
75070
75224
|
}
|
|
75071
75225
|
exports.Chunk = Chunk;
|
|
75072
75226
|
|
|
75073
|
-
},{}],
|
|
75227
|
+
},{}],398:[function(require,module,exports){
|
|
75074
75228
|
"use strict";
|
|
75075
75229
|
/*!
|
|
75076
75230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75250,7 +75404,7 @@ ParseTreeMatch = __decorate([
|
|
|
75250
75404
|
], ParseTreeMatch);
|
|
75251
75405
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
75252
75406
|
|
|
75253
|
-
},{"../../Decorators":
|
|
75407
|
+
},{"../../Decorators":272}],399:[function(require,module,exports){
|
|
75254
75408
|
"use strict";
|
|
75255
75409
|
/*!
|
|
75256
75410
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75408,7 +75562,7 @@ ParseTreePattern = __decorate([
|
|
|
75408
75562
|
], ParseTreePattern);
|
|
75409
75563
|
exports.ParseTreePattern = ParseTreePattern;
|
|
75410
75564
|
|
|
75411
|
-
},{"../../Decorators":
|
|
75565
|
+
},{"../../Decorators":272,"../xpath/XPath":405}],400:[function(require,module,exports){
|
|
75412
75566
|
"use strict";
|
|
75413
75567
|
/*!
|
|
75414
75568
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -75886,7 +76040,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
75886
76040
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
75887
76041
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
75888
76042
|
|
|
75889
|
-
},{"../../BailErrorStrategy":
|
|
76043
|
+
},{"../../BailErrorStrategy":262,"../../CharStreams":265,"../../CommonTokenStream":270,"../../Decorators":272,"../../ListTokenSource":283,"../../ParserInterpreter":287,"../../ParserRuleContext":288,"../../RecognitionException":291,"../../Token":297,"../../misc/MultiMap":386,"../../misc/ParseCancellationException":389,"../RuleNode":394,"../TerminalNode":395,"./ParseTreeMatch":398,"./ParseTreePattern":399,"./RuleTagToken":401,"./TagChunk":402,"./TextChunk":403,"./TokenTagToken":404}],401:[function(require,module,exports){
|
|
75890
76044
|
"use strict";
|
|
75891
76045
|
/*!
|
|
75892
76046
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76084,7 +76238,7 @@ RuleTagToken = __decorate([
|
|
|
76084
76238
|
], RuleTagToken);
|
|
76085
76239
|
exports.RuleTagToken = RuleTagToken;
|
|
76086
76240
|
|
|
76087
|
-
},{"../../Decorators":
|
|
76241
|
+
},{"../../Decorators":272,"../../Token":297}],402:[function(require,module,exports){
|
|
76088
76242
|
"use strict";
|
|
76089
76243
|
/*!
|
|
76090
76244
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76171,7 +76325,7 @@ __decorate([
|
|
|
76171
76325
|
], TagChunk.prototype, "toString", null);
|
|
76172
76326
|
exports.TagChunk = TagChunk;
|
|
76173
76327
|
|
|
76174
|
-
},{"../../Decorators":
|
|
76328
|
+
},{"../../Decorators":272,"./Chunk":397}],403:[function(require,module,exports){
|
|
76175
76329
|
"use strict";
|
|
76176
76330
|
/*!
|
|
76177
76331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76241,7 +76395,7 @@ TextChunk = __decorate([
|
|
|
76241
76395
|
], TextChunk);
|
|
76242
76396
|
exports.TextChunk = TextChunk;
|
|
76243
76397
|
|
|
76244
|
-
},{"../../Decorators":
|
|
76398
|
+
},{"../../Decorators":272,"./Chunk":397}],404:[function(require,module,exports){
|
|
76245
76399
|
"use strict";
|
|
76246
76400
|
/*!
|
|
76247
76401
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76336,7 +76490,7 @@ TokenTagToken = __decorate([
|
|
|
76336
76490
|
], TokenTagToken);
|
|
76337
76491
|
exports.TokenTagToken = TokenTagToken;
|
|
76338
76492
|
|
|
76339
|
-
},{"../../CommonToken":
|
|
76493
|
+
},{"../../CommonToken":268,"../../Decorators":272}],405:[function(require,module,exports){
|
|
76340
76494
|
"use strict";
|
|
76341
76495
|
/*!
|
|
76342
76496
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76533,7 +76687,7 @@ exports.XPath = XPath;
|
|
|
76533
76687
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
76534
76688
|
XPath.NOT = "!"; // word for invert operator
|
|
76535
76689
|
|
|
76536
|
-
},{"../../CharStreams":
|
|
76690
|
+
},{"../../CharStreams":265,"../../CommonTokenStream":270,"../../LexerNoViableAltException":282,"../../ParserRuleContext":288,"../../Token":297,"./XPathLexer":407,"./XPathLexerErrorListener":408,"./XPathRuleAnywhereElement":409,"./XPathRuleElement":410,"./XPathTokenAnywhereElement":411,"./XPathTokenElement":412,"./XPathWildcardAnywhereElement":413,"./XPathWildcardElement":414}],406:[function(require,module,exports){
|
|
76537
76691
|
"use strict";
|
|
76538
76692
|
/*!
|
|
76539
76693
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -76568,7 +76722,7 @@ __decorate([
|
|
|
76568
76722
|
], XPathElement.prototype, "toString", null);
|
|
76569
76723
|
exports.XPathElement = XPathElement;
|
|
76570
76724
|
|
|
76571
|
-
},{"../../Decorators":
|
|
76725
|
+
},{"../../Decorators":272}],407:[function(require,module,exports){
|
|
76572
76726
|
"use strict";
|
|
76573
76727
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
76574
76728
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -77043,7 +77197,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
77043
77197
|
XPathLexer._serializedATNSegment1,
|
|
77044
77198
|
], "");
|
|
77045
77199
|
|
|
77046
|
-
},{"../../Lexer":
|
|
77200
|
+
},{"../../Lexer":280,"../../VocabularyImpl":303,"../../atn/ATNDeserializer":309,"../../atn/LexerATNSimulator":330,"../../misc/Utils":391}],408:[function(require,module,exports){
|
|
77047
77201
|
"use strict";
|
|
77048
77202
|
/*!
|
|
77049
77203
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77068,7 +77222,7 @@ __decorate([
|
|
|
77068
77222
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
77069
77223
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
77070
77224
|
|
|
77071
|
-
},{"../../Decorators":
|
|
77225
|
+
},{"../../Decorators":272}],409:[function(require,module,exports){
|
|
77072
77226
|
"use strict";
|
|
77073
77227
|
/*!
|
|
77074
77228
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77102,7 +77256,7 @@ __decorate([
|
|
|
77102
77256
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
77103
77257
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
77104
77258
|
|
|
77105
|
-
},{"../../Decorators":
|
|
77259
|
+
},{"../../Decorators":272,"../Trees":396,"./XPathElement":406}],410:[function(require,module,exports){
|
|
77106
77260
|
"use strict";
|
|
77107
77261
|
/*!
|
|
77108
77262
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77145,7 +77299,7 @@ __decorate([
|
|
|
77145
77299
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
77146
77300
|
exports.XPathRuleElement = XPathRuleElement;
|
|
77147
77301
|
|
|
77148
|
-
},{"../../Decorators":
|
|
77302
|
+
},{"../../Decorators":272,"../../ParserRuleContext":288,"../Trees":396,"./XPathElement":406}],411:[function(require,module,exports){
|
|
77149
77303
|
"use strict";
|
|
77150
77304
|
/*!
|
|
77151
77305
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77177,7 +77331,7 @@ __decorate([
|
|
|
77177
77331
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
77178
77332
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
77179
77333
|
|
|
77180
|
-
},{"../../Decorators":
|
|
77334
|
+
},{"../../Decorators":272,"../Trees":396,"./XPathElement":406}],412:[function(require,module,exports){
|
|
77181
77335
|
"use strict";
|
|
77182
77336
|
/*!
|
|
77183
77337
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77220,7 +77374,7 @@ __decorate([
|
|
|
77220
77374
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
77221
77375
|
exports.XPathTokenElement = XPathTokenElement;
|
|
77222
77376
|
|
|
77223
|
-
},{"../../Decorators":
|
|
77377
|
+
},{"../../Decorators":272,"../TerminalNode":395,"../Trees":396,"./XPathElement":406}],413:[function(require,module,exports){
|
|
77224
77378
|
"use strict";
|
|
77225
77379
|
/*!
|
|
77226
77380
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77256,7 +77410,7 @@ __decorate([
|
|
|
77256
77410
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
77257
77411
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
77258
77412
|
|
|
77259
|
-
},{"../../Decorators":
|
|
77413
|
+
},{"../../Decorators":272,"../Trees":396,"./XPath":405,"./XPathElement":406}],414:[function(require,module,exports){
|
|
77260
77414
|
"use strict";
|
|
77261
77415
|
/*!
|
|
77262
77416
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -77296,7 +77450,7 @@ __decorate([
|
|
|
77296
77450
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
77297
77451
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
77298
77452
|
|
|
77299
|
-
},{"../../Decorators":
|
|
77453
|
+
},{"../../Decorators":272,"../Trees":396,"./XPath":405,"./XPathElement":406}],415:[function(require,module,exports){
|
|
77300
77454
|
(function (global){(function (){
|
|
77301
77455
|
'use strict';
|
|
77302
77456
|
|
|
@@ -77806,7 +77960,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
77806
77960
|
};
|
|
77807
77961
|
|
|
77808
77962
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
77809
|
-
},{"object.assign/polyfill":
|
|
77963
|
+
},{"object.assign/polyfill":472,"util/":418}],416:[function(require,module,exports){
|
|
77810
77964
|
if (typeof Object.create === 'function') {
|
|
77811
77965
|
// implementation from standard node.js 'util' module
|
|
77812
77966
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -77831,14 +77985,14 @@ if (typeof Object.create === 'function') {
|
|
|
77831
77985
|
}
|
|
77832
77986
|
}
|
|
77833
77987
|
|
|
77834
|
-
},{}],
|
|
77988
|
+
},{}],417:[function(require,module,exports){
|
|
77835
77989
|
module.exports = function isBuffer(arg) {
|
|
77836
77990
|
return arg && typeof arg === 'object'
|
|
77837
77991
|
&& typeof arg.copy === 'function'
|
|
77838
77992
|
&& typeof arg.fill === 'function'
|
|
77839
77993
|
&& typeof arg.readUInt8 === 'function';
|
|
77840
77994
|
}
|
|
77841
|
-
},{}],
|
|
77995
|
+
},{}],418:[function(require,module,exports){
|
|
77842
77996
|
(function (process,global){(function (){
|
|
77843
77997
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
77844
77998
|
//
|
|
@@ -78428,7 +78582,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
78428
78582
|
}
|
|
78429
78583
|
|
|
78430
78584
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78431
|
-
},{"./support/isBuffer":
|
|
78585
|
+
},{"./support/isBuffer":417,"_process":474,"inherits":416}],419:[function(require,module,exports){
|
|
78432
78586
|
(function (global){(function (){
|
|
78433
78587
|
'use strict';
|
|
78434
78588
|
|
|
@@ -78449,7 +78603,7 @@ module.exports = function availableTypedArrays() {
|
|
|
78449
78603
|
};
|
|
78450
78604
|
|
|
78451
78605
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78452
|
-
},{"possible-typed-array-names":
|
|
78606
|
+
},{"possible-typed-array-names":473}],420:[function(require,module,exports){
|
|
78453
78607
|
(function (process,global){(function (){
|
|
78454
78608
|
module.exports = process.hrtime || hrtime
|
|
78455
78609
|
|
|
@@ -78480,7 +78634,7 @@ function hrtime(previousTimestamp){
|
|
|
78480
78634
|
return [seconds,nanoseconds]
|
|
78481
78635
|
}
|
|
78482
78636
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
78483
|
-
},{"_process":
|
|
78637
|
+
},{"_process":474}],421:[function(require,module,exports){
|
|
78484
78638
|
'use strict';
|
|
78485
78639
|
|
|
78486
78640
|
var bind = require('function-bind');
|
|
@@ -78492,7 +78646,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
78492
78646
|
/** @type {import('./actualApply')} */
|
|
78493
78647
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
78494
78648
|
|
|
78495
|
-
},{"./functionApply":
|
|
78649
|
+
},{"./functionApply":423,"./functionCall":424,"./reflectApply":426,"function-bind":442}],422:[function(require,module,exports){
|
|
78496
78650
|
'use strict';
|
|
78497
78651
|
|
|
78498
78652
|
var bind = require('function-bind');
|
|
@@ -78504,19 +78658,19 @@ module.exports = function applyBind() {
|
|
|
78504
78658
|
return actualApply(bind, $apply, arguments);
|
|
78505
78659
|
};
|
|
78506
78660
|
|
|
78507
|
-
},{"./actualApply":
|
|
78661
|
+
},{"./actualApply":421,"./functionApply":423,"function-bind":442}],423:[function(require,module,exports){
|
|
78508
78662
|
'use strict';
|
|
78509
78663
|
|
|
78510
78664
|
/** @type {import('./functionApply')} */
|
|
78511
78665
|
module.exports = Function.prototype.apply;
|
|
78512
78666
|
|
|
78513
|
-
},{}],
|
|
78667
|
+
},{}],424:[function(require,module,exports){
|
|
78514
78668
|
'use strict';
|
|
78515
78669
|
|
|
78516
78670
|
/** @type {import('./functionCall')} */
|
|
78517
78671
|
module.exports = Function.prototype.call;
|
|
78518
78672
|
|
|
78519
|
-
},{}],
|
|
78673
|
+
},{}],425:[function(require,module,exports){
|
|
78520
78674
|
'use strict';
|
|
78521
78675
|
|
|
78522
78676
|
var bind = require('function-bind');
|
|
@@ -78533,13 +78687,13 @@ module.exports = function callBindBasic(args) {
|
|
|
78533
78687
|
return $actualApply(bind, $call, args);
|
|
78534
78688
|
};
|
|
78535
78689
|
|
|
78536
|
-
},{"./actualApply":
|
|
78690
|
+
},{"./actualApply":421,"./functionCall":424,"es-errors/type":437,"function-bind":442}],426:[function(require,module,exports){
|
|
78537
78691
|
'use strict';
|
|
78538
78692
|
|
|
78539
78693
|
/** @type {import('./reflectApply')} */
|
|
78540
78694
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
78541
78695
|
|
|
78542
|
-
},{}],
|
|
78696
|
+
},{}],427:[function(require,module,exports){
|
|
78543
78697
|
'use strict';
|
|
78544
78698
|
|
|
78545
78699
|
var setFunctionLength = require('set-function-length');
|
|
@@ -78565,7 +78719,7 @@ if ($defineProperty) {
|
|
|
78565
78719
|
module.exports.apply = applyBind;
|
|
78566
78720
|
}
|
|
78567
78721
|
|
|
78568
|
-
},{"call-bind-apply-helpers":
|
|
78722
|
+
},{"call-bind-apply-helpers":425,"call-bind-apply-helpers/applyBind":422,"es-define-property":431,"set-function-length":476}],428:[function(require,module,exports){
|
|
78569
78723
|
'use strict';
|
|
78570
78724
|
|
|
78571
78725
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -78586,7 +78740,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
78586
78740
|
return intrinsic;
|
|
78587
78741
|
};
|
|
78588
78742
|
|
|
78589
|
-
},{"call-bind-apply-helpers":
|
|
78743
|
+
},{"call-bind-apply-helpers":425,"get-intrinsic":443}],429:[function(require,module,exports){
|
|
78590
78744
|
'use strict';
|
|
78591
78745
|
|
|
78592
78746
|
var $defineProperty = require('es-define-property');
|
|
@@ -78644,7 +78798,7 @@ module.exports = function defineDataProperty(
|
|
|
78644
78798
|
}
|
|
78645
78799
|
};
|
|
78646
78800
|
|
|
78647
|
-
},{"es-define-property":
|
|
78801
|
+
},{"es-define-property":431,"es-errors/syntax":436,"es-errors/type":437,"gopd":448}],430:[function(require,module,exports){
|
|
78648
78802
|
'use strict';
|
|
78649
78803
|
|
|
78650
78804
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -78676,7 +78830,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
78676
78830
|
}
|
|
78677
78831
|
: false;
|
|
78678
78832
|
|
|
78679
|
-
},{"call-bind-apply-helpers":
|
|
78833
|
+
},{"call-bind-apply-helpers":425,"gopd":448}],431:[function(require,module,exports){
|
|
78680
78834
|
'use strict';
|
|
78681
78835
|
|
|
78682
78836
|
/** @type {import('.')} */
|
|
@@ -78692,55 +78846,55 @@ if ($defineProperty) {
|
|
|
78692
78846
|
|
|
78693
78847
|
module.exports = $defineProperty;
|
|
78694
78848
|
|
|
78695
|
-
},{}],
|
|
78849
|
+
},{}],432:[function(require,module,exports){
|
|
78696
78850
|
'use strict';
|
|
78697
78851
|
|
|
78698
78852
|
/** @type {import('./eval')} */
|
|
78699
78853
|
module.exports = EvalError;
|
|
78700
78854
|
|
|
78701
|
-
},{}],
|
|
78855
|
+
},{}],433:[function(require,module,exports){
|
|
78702
78856
|
'use strict';
|
|
78703
78857
|
|
|
78704
78858
|
/** @type {import('.')} */
|
|
78705
78859
|
module.exports = Error;
|
|
78706
78860
|
|
|
78707
|
-
},{}],
|
|
78861
|
+
},{}],434:[function(require,module,exports){
|
|
78708
78862
|
'use strict';
|
|
78709
78863
|
|
|
78710
78864
|
/** @type {import('./range')} */
|
|
78711
78865
|
module.exports = RangeError;
|
|
78712
78866
|
|
|
78713
|
-
},{}],
|
|
78867
|
+
},{}],435:[function(require,module,exports){
|
|
78714
78868
|
'use strict';
|
|
78715
78869
|
|
|
78716
78870
|
/** @type {import('./ref')} */
|
|
78717
78871
|
module.exports = ReferenceError;
|
|
78718
78872
|
|
|
78719
|
-
},{}],
|
|
78873
|
+
},{}],436:[function(require,module,exports){
|
|
78720
78874
|
'use strict';
|
|
78721
78875
|
|
|
78722
78876
|
/** @type {import('./syntax')} */
|
|
78723
78877
|
module.exports = SyntaxError;
|
|
78724
78878
|
|
|
78725
|
-
},{}],
|
|
78879
|
+
},{}],437:[function(require,module,exports){
|
|
78726
78880
|
'use strict';
|
|
78727
78881
|
|
|
78728
78882
|
/** @type {import('./type')} */
|
|
78729
78883
|
module.exports = TypeError;
|
|
78730
78884
|
|
|
78731
|
-
},{}],
|
|
78885
|
+
},{}],438:[function(require,module,exports){
|
|
78732
78886
|
'use strict';
|
|
78733
78887
|
|
|
78734
78888
|
/** @type {import('./uri')} */
|
|
78735
78889
|
module.exports = URIError;
|
|
78736
78890
|
|
|
78737
|
-
},{}],
|
|
78891
|
+
},{}],439:[function(require,module,exports){
|
|
78738
78892
|
'use strict';
|
|
78739
78893
|
|
|
78740
78894
|
/** @type {import('.')} */
|
|
78741
78895
|
module.exports = Object;
|
|
78742
78896
|
|
|
78743
|
-
},{}],
|
|
78897
|
+
},{}],440:[function(require,module,exports){
|
|
78744
78898
|
'use strict';
|
|
78745
78899
|
|
|
78746
78900
|
var isCallable = require('is-callable');
|
|
@@ -78811,7 +78965,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
78811
78965
|
}
|
|
78812
78966
|
};
|
|
78813
78967
|
|
|
78814
|
-
},{"is-callable":
|
|
78968
|
+
},{"is-callable":456}],441:[function(require,module,exports){
|
|
78815
78969
|
'use strict';
|
|
78816
78970
|
|
|
78817
78971
|
/* eslint no-invalid-this: 1 */
|
|
@@ -78897,14 +79051,14 @@ module.exports = function bind(that) {
|
|
|
78897
79051
|
return bound;
|
|
78898
79052
|
};
|
|
78899
79053
|
|
|
78900
|
-
},{}],
|
|
79054
|
+
},{}],442:[function(require,module,exports){
|
|
78901
79055
|
'use strict';
|
|
78902
79056
|
|
|
78903
79057
|
var implementation = require('./implementation');
|
|
78904
79058
|
|
|
78905
79059
|
module.exports = Function.prototype.bind || implementation;
|
|
78906
79060
|
|
|
78907
|
-
},{"./implementation":
|
|
79061
|
+
},{"./implementation":441}],443:[function(require,module,exports){
|
|
78908
79062
|
'use strict';
|
|
78909
79063
|
|
|
78910
79064
|
var undefined;
|
|
@@ -79284,7 +79438,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
79284
79438
|
return value;
|
|
79285
79439
|
};
|
|
79286
79440
|
|
|
79287
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
79441
|
+
},{"call-bind-apply-helpers/functionApply":423,"call-bind-apply-helpers/functionCall":424,"es-define-property":431,"es-errors":433,"es-errors/eval":432,"es-errors/range":434,"es-errors/ref":435,"es-errors/syntax":436,"es-errors/type":437,"es-errors/uri":438,"es-object-atoms":439,"function-bind":442,"get-proto":446,"get-proto/Object.getPrototypeOf":444,"get-proto/Reflect.getPrototypeOf":445,"gopd":448,"has-symbols":450,"hasown":453,"math-intrinsics/abs":460,"math-intrinsics/floor":461,"math-intrinsics/max":463,"math-intrinsics/min":464,"math-intrinsics/pow":465,"math-intrinsics/round":466,"math-intrinsics/sign":467}],444:[function(require,module,exports){
|
|
79288
79442
|
'use strict';
|
|
79289
79443
|
|
|
79290
79444
|
var $Object = require('es-object-atoms');
|
|
@@ -79292,13 +79446,13 @@ var $Object = require('es-object-atoms');
|
|
|
79292
79446
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
79293
79447
|
module.exports = $Object.getPrototypeOf || null;
|
|
79294
79448
|
|
|
79295
|
-
},{"es-object-atoms":
|
|
79449
|
+
},{"es-object-atoms":439}],445:[function(require,module,exports){
|
|
79296
79450
|
'use strict';
|
|
79297
79451
|
|
|
79298
79452
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
79299
79453
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
79300
79454
|
|
|
79301
|
-
},{}],
|
|
79455
|
+
},{}],446:[function(require,module,exports){
|
|
79302
79456
|
'use strict';
|
|
79303
79457
|
|
|
79304
79458
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -79327,13 +79481,13 @@ module.exports = reflectGetProto
|
|
|
79327
79481
|
}
|
|
79328
79482
|
: null;
|
|
79329
79483
|
|
|
79330
|
-
},{"./Object.getPrototypeOf":
|
|
79484
|
+
},{"./Object.getPrototypeOf":444,"./Reflect.getPrototypeOf":445,"dunder-proto/get":430}],447:[function(require,module,exports){
|
|
79331
79485
|
'use strict';
|
|
79332
79486
|
|
|
79333
79487
|
/** @type {import('./gOPD')} */
|
|
79334
79488
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
79335
79489
|
|
|
79336
|
-
},{}],
|
|
79490
|
+
},{}],448:[function(require,module,exports){
|
|
79337
79491
|
'use strict';
|
|
79338
79492
|
|
|
79339
79493
|
/** @type {import('.')} */
|
|
@@ -79350,7 +79504,7 @@ if ($gOPD) {
|
|
|
79350
79504
|
|
|
79351
79505
|
module.exports = $gOPD;
|
|
79352
79506
|
|
|
79353
|
-
},{"./gOPD":
|
|
79507
|
+
},{"./gOPD":447}],449:[function(require,module,exports){
|
|
79354
79508
|
'use strict';
|
|
79355
79509
|
|
|
79356
79510
|
var $defineProperty = require('es-define-property');
|
|
@@ -79374,7 +79528,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
79374
79528
|
|
|
79375
79529
|
module.exports = hasPropertyDescriptors;
|
|
79376
79530
|
|
|
79377
|
-
},{"es-define-property":
|
|
79531
|
+
},{"es-define-property":431}],450:[function(require,module,exports){
|
|
79378
79532
|
'use strict';
|
|
79379
79533
|
|
|
79380
79534
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -79390,7 +79544,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
79390
79544
|
return hasSymbolSham();
|
|
79391
79545
|
};
|
|
79392
79546
|
|
|
79393
|
-
},{"./shams":
|
|
79547
|
+
},{"./shams":451}],451:[function(require,module,exports){
|
|
79394
79548
|
'use strict';
|
|
79395
79549
|
|
|
79396
79550
|
/** @type {import('./shams')} */
|
|
@@ -79437,7 +79591,7 @@ module.exports = function hasSymbols() {
|
|
|
79437
79591
|
return true;
|
|
79438
79592
|
};
|
|
79439
79593
|
|
|
79440
|
-
},{}],
|
|
79594
|
+
},{}],452:[function(require,module,exports){
|
|
79441
79595
|
'use strict';
|
|
79442
79596
|
|
|
79443
79597
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -79447,7 +79601,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
79447
79601
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
79448
79602
|
};
|
|
79449
79603
|
|
|
79450
|
-
},{"has-symbols/shams":
|
|
79604
|
+
},{"has-symbols/shams":451}],453:[function(require,module,exports){
|
|
79451
79605
|
'use strict';
|
|
79452
79606
|
|
|
79453
79607
|
var call = Function.prototype.call;
|
|
@@ -79457,7 +79611,7 @@ var bind = require('function-bind');
|
|
|
79457
79611
|
/** @type {import('.')} */
|
|
79458
79612
|
module.exports = bind.call(call, $hasOwn);
|
|
79459
79613
|
|
|
79460
|
-
},{"function-bind":
|
|
79614
|
+
},{"function-bind":442}],454:[function(require,module,exports){
|
|
79461
79615
|
if (typeof Object.create === 'function') {
|
|
79462
79616
|
// implementation from standard node.js 'util' module
|
|
79463
79617
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -79486,7 +79640,7 @@ if (typeof Object.create === 'function') {
|
|
|
79486
79640
|
}
|
|
79487
79641
|
}
|
|
79488
79642
|
|
|
79489
|
-
},{}],
|
|
79643
|
+
},{}],455:[function(require,module,exports){
|
|
79490
79644
|
'use strict';
|
|
79491
79645
|
|
|
79492
79646
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -79532,7 +79686,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
79532
79686
|
/** @type {import('.')} */
|
|
79533
79687
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
79534
79688
|
|
|
79535
|
-
},{"call-bound":
|
|
79689
|
+
},{"call-bound":428,"has-tostringtag/shams":452}],456:[function(require,module,exports){
|
|
79536
79690
|
'use strict';
|
|
79537
79691
|
|
|
79538
79692
|
var fnToStr = Function.prototype.toString;
|
|
@@ -79635,7 +79789,7 @@ module.exports = reflectApply
|
|
|
79635
79789
|
return tryFunctionObject(value);
|
|
79636
79790
|
};
|
|
79637
79791
|
|
|
79638
|
-
},{}],
|
|
79792
|
+
},{}],457:[function(require,module,exports){
|
|
79639
79793
|
'use strict';
|
|
79640
79794
|
|
|
79641
79795
|
var callBound = require('call-bound');
|
|
@@ -79684,7 +79838,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
79684
79838
|
return getProto(fn) === GeneratorFunction;
|
|
79685
79839
|
};
|
|
79686
79840
|
|
|
79687
|
-
},{"call-bound":
|
|
79841
|
+
},{"call-bound":428,"get-proto":446,"has-tostringtag/shams":452,"safe-regex-test":475}],458:[function(require,module,exports){
|
|
79688
79842
|
'use strict';
|
|
79689
79843
|
|
|
79690
79844
|
var callBound = require('call-bound');
|
|
@@ -79755,7 +79909,7 @@ if (hasToStringTag) {
|
|
|
79755
79909
|
|
|
79756
79910
|
module.exports = fn;
|
|
79757
79911
|
|
|
79758
|
-
},{"call-bound":
|
|
79912
|
+
},{"call-bound":428,"gopd":448,"has-tostringtag/shams":452,"hasown":453}],459:[function(require,module,exports){
|
|
79759
79913
|
'use strict';
|
|
79760
79914
|
|
|
79761
79915
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -79765,19 +79919,19 @@ module.exports = function isTypedArray(value) {
|
|
|
79765
79919
|
return !!whichTypedArray(value);
|
|
79766
79920
|
};
|
|
79767
79921
|
|
|
79768
|
-
},{"which-typed-array":
|
|
79922
|
+
},{"which-typed-array":480}],460:[function(require,module,exports){
|
|
79769
79923
|
'use strict';
|
|
79770
79924
|
|
|
79771
79925
|
/** @type {import('./abs')} */
|
|
79772
79926
|
module.exports = Math.abs;
|
|
79773
79927
|
|
|
79774
|
-
},{}],
|
|
79928
|
+
},{}],461:[function(require,module,exports){
|
|
79775
79929
|
'use strict';
|
|
79776
79930
|
|
|
79777
79931
|
/** @type {import('./floor')} */
|
|
79778
79932
|
module.exports = Math.floor;
|
|
79779
79933
|
|
|
79780
|
-
},{}],
|
|
79934
|
+
},{}],462:[function(require,module,exports){
|
|
79781
79935
|
'use strict';
|
|
79782
79936
|
|
|
79783
79937
|
/** @type {import('./isNaN')} */
|
|
@@ -79785,31 +79939,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
79785
79939
|
return a !== a;
|
|
79786
79940
|
};
|
|
79787
79941
|
|
|
79788
|
-
},{}],
|
|
79942
|
+
},{}],463:[function(require,module,exports){
|
|
79789
79943
|
'use strict';
|
|
79790
79944
|
|
|
79791
79945
|
/** @type {import('./max')} */
|
|
79792
79946
|
module.exports = Math.max;
|
|
79793
79947
|
|
|
79794
|
-
},{}],
|
|
79948
|
+
},{}],464:[function(require,module,exports){
|
|
79795
79949
|
'use strict';
|
|
79796
79950
|
|
|
79797
79951
|
/** @type {import('./min')} */
|
|
79798
79952
|
module.exports = Math.min;
|
|
79799
79953
|
|
|
79800
|
-
},{}],
|
|
79954
|
+
},{}],465:[function(require,module,exports){
|
|
79801
79955
|
'use strict';
|
|
79802
79956
|
|
|
79803
79957
|
/** @type {import('./pow')} */
|
|
79804
79958
|
module.exports = Math.pow;
|
|
79805
79959
|
|
|
79806
|
-
},{}],
|
|
79960
|
+
},{}],466:[function(require,module,exports){
|
|
79807
79961
|
'use strict';
|
|
79808
79962
|
|
|
79809
79963
|
/** @type {import('./round')} */
|
|
79810
79964
|
module.exports = Math.round;
|
|
79811
79965
|
|
|
79812
|
-
},{}],
|
|
79966
|
+
},{}],467:[function(require,module,exports){
|
|
79813
79967
|
'use strict';
|
|
79814
79968
|
|
|
79815
79969
|
var $isNaN = require('./isNaN');
|
|
@@ -79822,7 +79976,7 @@ module.exports = function sign(number) {
|
|
|
79822
79976
|
return number < 0 ? -1 : +1;
|
|
79823
79977
|
};
|
|
79824
79978
|
|
|
79825
|
-
},{"./isNaN":
|
|
79979
|
+
},{"./isNaN":462}],468:[function(require,module,exports){
|
|
79826
79980
|
'use strict';
|
|
79827
79981
|
|
|
79828
79982
|
var keysShim;
|
|
@@ -79946,7 +80100,7 @@ if (!Object.keys) {
|
|
|
79946
80100
|
}
|
|
79947
80101
|
module.exports = keysShim;
|
|
79948
80102
|
|
|
79949
|
-
},{"./isArguments":
|
|
80103
|
+
},{"./isArguments":470}],469:[function(require,module,exports){
|
|
79950
80104
|
'use strict';
|
|
79951
80105
|
|
|
79952
80106
|
var slice = Array.prototype.slice;
|
|
@@ -79980,7 +80134,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
79980
80134
|
|
|
79981
80135
|
module.exports = keysShim;
|
|
79982
80136
|
|
|
79983
|
-
},{"./implementation":
|
|
80137
|
+
},{"./implementation":468,"./isArguments":470}],470:[function(require,module,exports){
|
|
79984
80138
|
'use strict';
|
|
79985
80139
|
|
|
79986
80140
|
var toStr = Object.prototype.toString;
|
|
@@ -79999,7 +80153,7 @@ module.exports = function isArguments(value) {
|
|
|
79999
80153
|
return isArgs;
|
|
80000
80154
|
};
|
|
80001
80155
|
|
|
80002
|
-
},{}],
|
|
80156
|
+
},{}],471:[function(require,module,exports){
|
|
80003
80157
|
'use strict';
|
|
80004
80158
|
|
|
80005
80159
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -80047,7 +80201,7 @@ module.exports = function assign(target, source1) {
|
|
|
80047
80201
|
return to; // step 4
|
|
80048
80202
|
};
|
|
80049
80203
|
|
|
80050
|
-
},{"call-bound":
|
|
80204
|
+
},{"call-bound":428,"es-object-atoms":439,"has-symbols/shams":451,"object-keys":469}],472:[function(require,module,exports){
|
|
80051
80205
|
'use strict';
|
|
80052
80206
|
|
|
80053
80207
|
var implementation = require('./implementation');
|
|
@@ -80104,7 +80258,7 @@ module.exports = function getPolyfill() {
|
|
|
80104
80258
|
return Object.assign;
|
|
80105
80259
|
};
|
|
80106
80260
|
|
|
80107
|
-
},{"./implementation":
|
|
80261
|
+
},{"./implementation":471}],473:[function(require,module,exports){
|
|
80108
80262
|
'use strict';
|
|
80109
80263
|
|
|
80110
80264
|
/** @type {import('.')} */
|
|
@@ -80123,7 +80277,7 @@ module.exports = [
|
|
|
80123
80277
|
'BigUint64Array'
|
|
80124
80278
|
];
|
|
80125
80279
|
|
|
80126
|
-
},{}],
|
|
80280
|
+
},{}],474:[function(require,module,exports){
|
|
80127
80281
|
// shim for using process in browser
|
|
80128
80282
|
var process = module.exports = {};
|
|
80129
80283
|
|
|
@@ -80309,7 +80463,7 @@ process.chdir = function (dir) {
|
|
|
80309
80463
|
};
|
|
80310
80464
|
process.umask = function() { return 0; };
|
|
80311
80465
|
|
|
80312
|
-
},{}],
|
|
80466
|
+
},{}],475:[function(require,module,exports){
|
|
80313
80467
|
'use strict';
|
|
80314
80468
|
|
|
80315
80469
|
var callBound = require('call-bound');
|
|
@@ -80328,7 +80482,7 @@ module.exports = function regexTester(regex) {
|
|
|
80328
80482
|
};
|
|
80329
80483
|
};
|
|
80330
80484
|
|
|
80331
|
-
},{"call-bound":
|
|
80485
|
+
},{"call-bound":428,"es-errors/type":437,"is-regex":458}],476:[function(require,module,exports){
|
|
80332
80486
|
'use strict';
|
|
80333
80487
|
|
|
80334
80488
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -80372,9 +80526,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
80372
80526
|
return fn;
|
|
80373
80527
|
};
|
|
80374
80528
|
|
|
80375
|
-
},{"define-data-property":
|
|
80376
|
-
arguments[4][
|
|
80377
|
-
},{"dup":
|
|
80529
|
+
},{"define-data-property":429,"es-errors/type":437,"get-intrinsic":443,"gopd":448,"has-property-descriptors":449}],477:[function(require,module,exports){
|
|
80530
|
+
arguments[4][417][0].apply(exports,arguments)
|
|
80531
|
+
},{"dup":417}],478:[function(require,module,exports){
|
|
80378
80532
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
80379
80533
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
80380
80534
|
|
|
@@ -80710,7 +80864,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
80710
80864
|
});
|
|
80711
80865
|
});
|
|
80712
80866
|
|
|
80713
|
-
},{"is-arguments":
|
|
80867
|
+
},{"is-arguments":455,"is-generator-function":457,"is-typed-array":459,"which-typed-array":480}],479:[function(require,module,exports){
|
|
80714
80868
|
(function (process){(function (){
|
|
80715
80869
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
80716
80870
|
//
|
|
@@ -81429,7 +81583,7 @@ function callbackify(original) {
|
|
|
81429
81583
|
exports.callbackify = callbackify;
|
|
81430
81584
|
|
|
81431
81585
|
}).call(this)}).call(this,require('_process'))
|
|
81432
|
-
},{"./support/isBuffer":
|
|
81586
|
+
},{"./support/isBuffer":477,"./support/types":478,"_process":474,"inherits":454}],480:[function(require,module,exports){
|
|
81433
81587
|
(function (global){(function (){
|
|
81434
81588
|
'use strict';
|
|
81435
81589
|
|
|
@@ -81550,5 +81704,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
81550
81704
|
};
|
|
81551
81705
|
|
|
81552
81706
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
81553
|
-
},{"available-typed-arrays":
|
|
81707
|
+
},{"available-typed-arrays":419,"call-bind":427,"call-bound":428,"for-each":440,"get-proto":446,"gopd":448,"has-tostringtag/shams":452}]},{},[140])(140)
|
|
81554
81708
|
});
|