@designliquido/delegua 0.72.0 → 0.73.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/bin/package.json +1 -1
- package/estilizador/regras/index.d.ts +1 -0
- package/estilizador/regras/index.d.ts.map +1 -1
- package/estilizador/regras/index.js +1 -0
- package/estilizador/regras/index.js.map +1 -1
- package/estilizador/regras/paradigma-consistente.d.ts +45 -0
- package/estilizador/regras/paradigma-consistente.d.ts.map +1 -0
- package/estilizador/regras/paradigma-consistente.js +89 -0
- package/estilizador/regras/paradigma-consistente.js.map +1 -0
- package/interpretador/dialetos/calango/index.d.ts +2 -0
- package/interpretador/dialetos/calango/index.d.ts.map +1 -0
- package/interpretador/dialetos/calango/index.js +18 -0
- package/interpretador/dialetos/calango/index.js.map +1 -0
- package/interpretador/dialetos/index.d.ts +2 -0
- package/interpretador/dialetos/index.d.ts.map +1 -1
- package/interpretador/dialetos/index.js +2 -0
- package/interpretador/dialetos/index.js.map +1 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.d.ts +2 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.d.ts.map +1 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js +42 -1
- package/interpretador/dialetos/pitugues/interpretador-pitugues.js.map +1 -1
- package/interpretador/interpretador.d.ts.map +1 -1
- package/interpretador/interpretador.js +4 -8
- package/interpretador/interpretador.js.map +1 -1
- package/lexador/filtro-paradigma.d.ts +15 -0
- package/lexador/filtro-paradigma.d.ts.map +1 -0
- package/lexador/filtro-paradigma.js +51 -0
- package/lexador/filtro-paradigma.js.map +1 -0
- package/lexador/mapeamento-paradigmas.d.ts +47 -0
- package/lexador/mapeamento-paradigmas.d.ts.map +1 -0
- package/lexador/mapeamento-paradigmas.js +183 -0
- package/lexador/mapeamento-paradigmas.js.map +1 -0
- package/package.json +1 -1
- package/umd/delegua.js +628 -357
package/umd/delegua.js
CHANGED
|
@@ -339,7 +339,7 @@ class AnalisadorSemanticoBase {
|
|
|
339
339
|
}
|
|
340
340
|
exports.AnalisadorSemanticoBase = AnalisadorSemanticoBase;
|
|
341
341
|
|
|
342
|
-
},{"../construtos":62,"../declaracoes":109,"../interfaces":
|
|
342
|
+
},{"../construtos":62,"../declaracoes":109,"../interfaces":143}],2:[function(require,module,exports){
|
|
343
343
|
"use strict";
|
|
344
344
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
345
345
|
exports.AnalisadorSemantico = void 0;
|
|
@@ -1244,7 +1244,7 @@ class AnalisadorSemantico extends analisador_semantico_base_1.AnalisadorSemantic
|
|
|
1244
1244
|
}
|
|
1245
1245
|
exports.AnalisadorSemantico = AnalisadorSemantico;
|
|
1246
1246
|
|
|
1247
|
-
},{"../construtos":62,"../declaracoes":109,"../interfaces/erros":
|
|
1247
|
+
},{"../construtos":62,"../declaracoes":109,"../interfaces/erros":140,"./analisador-semantico-base":1,"./gerenciador-escopos":5,"./pilha-variaveis":7}],3:[function(require,module,exports){
|
|
1248
1248
|
"use strict";
|
|
1249
1249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1250
1250
|
|
|
@@ -1628,7 +1628,7 @@ class AvaliadorSintaticoBase {
|
|
|
1628
1628
|
}
|
|
1629
1629
|
exports.AvaliadorSintaticoBase = AvaliadorSintaticoBase;
|
|
1630
1630
|
|
|
1631
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/comum":
|
|
1631
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/comum":211,"./erro-avaliador-sintatico":21}],10:[function(require,module,exports){
|
|
1632
1632
|
"use strict";
|
|
1633
1633
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1634
1634
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -3768,7 +3768,7 @@ class AvaliadorSintatico extends avaliador_sintatico_base_1.AvaliadorSintaticoBa
|
|
|
3768
3768
|
}
|
|
3769
3769
|
exports.AvaliadorSintatico = AvaliadorSintatico;
|
|
3770
3770
|
|
|
3771
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":109,"../inferenciador":
|
|
3771
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../construtos/tuplas":80,"../declaracoes":109,"../inferenciador":135,"../informacao-elemento-sintatico":136,"../tipos-de-dados/delegua":207,"../tipos-de-simbolos/delegua":212,"./avaliador-sintatico-base":9,"./comum":11,"./elemento-montao-tipos":20,"./erro-avaliador-sintatico":21,"./informacao-escopo":23,"./montao-tipos":26,"./pilha-escopos":27,"browser-process-hrtime":401}],11:[function(require,module,exports){
|
|
3772
3772
|
"use strict";
|
|
3773
3773
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3774
3774
|
exports.buscarRetornos = buscarRetornos;
|
|
@@ -3869,7 +3869,7 @@ function registrarPrimitiva(primitivasConhecidas, tipo, catalogoPrimitivas) {
|
|
|
3869
3869
|
}
|
|
3870
3870
|
}
|
|
3871
3871
|
|
|
3872
|
-
},{"../declaracoes":109,"../informacao-elemento-sintatico":
|
|
3872
|
+
},{"../declaracoes":109,"../informacao-elemento-sintatico":136}],12:[function(require,module,exports){
|
|
3873
3873
|
"use strict";
|
|
3874
3874
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3875
3875
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4095,7 +4095,7 @@ class AvaliadorSintaticoCalango extends avaliador_sintatico_base_1.AvaliadorSint
|
|
|
4095
4095
|
}
|
|
4096
4096
|
exports.AvaliadorSintaticoCalango = AvaliadorSintaticoCalango;
|
|
4097
4097
|
|
|
4098
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../informacao-elemento-sintatico":
|
|
4098
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../informacao-elemento-sintatico":136,"../../tipos-de-simbolos/calango":210,"../avaliador-sintatico-base":9,"../informacao-escopo":23,"../pilha-escopos":27}],13:[function(require,module,exports){
|
|
4099
4099
|
"use strict";
|
|
4100
4100
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4101
4101
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4755,7 +4755,7 @@ class AvaliadorSintaticoEguaClassico {
|
|
|
4755
4755
|
}
|
|
4756
4756
|
exports.AvaliadorSintaticoEguaClassico = AvaliadorSintaticoEguaClassico;
|
|
4757
4757
|
|
|
4758
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/egua-classico":
|
|
4758
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/egua-classico":213,"../erro-avaliador-sintatico":21}],14:[function(require,module,exports){
|
|
4759
4759
|
"use strict";
|
|
4760
4760
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4761
4761
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6191,7 +6191,7 @@ class AvaliadorSintaticoPitugues {
|
|
|
6191
6191
|
}
|
|
6192
6192
|
exports.AvaliadorSintaticoPitugues = AvaliadorSintaticoPitugues;
|
|
6193
6193
|
|
|
6194
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
6194
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":197,"../../lexador/micro-lexador-pitugues":202,"../../tipos-de-dados/dialetos/pitugues":208,"../../tipos-de-simbolos/pitugues":216,"../comum":11,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"./micro-avaliador-sintatico-pitugues":19,"browser-process-hrtime":401}],15:[function(require,module,exports){
|
|
6195
6195
|
"use strict";
|
|
6196
6196
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6197
6197
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -6365,7 +6365,7 @@ class AvaliadorSintaticoPortugolIpt extends avaliador_sintatico_base_1.Avaliador
|
|
|
6365
6365
|
}
|
|
6366
6366
|
exports.AvaliadorSintaticoPortugolIpt = AvaliadorSintaticoPortugolIpt;
|
|
6367
6367
|
|
|
6368
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/portugol-ipt":
|
|
6368
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../tipos-de-simbolos/portugol-ipt":217,"../avaliador-sintatico-base":9}],16:[function(require,module,exports){
|
|
6369
6369
|
"use strict";
|
|
6370
6370
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6371
6371
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7120,7 +7120,7 @@ class AvaliadorSintaticoPrisma extends avaliador_sintatico_base_1.AvaliadorSinta
|
|
|
7120
7120
|
}
|
|
7121
7121
|
exports.AvaliadorSintaticoPrisma = AvaliadorSintaticoPrisma;
|
|
7122
7122
|
|
|
7123
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
7123
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador":197,"../../tipos-de-simbolos/prisma":218,"../avaliador-sintatico-base":9,"../comum":11,"../erro-avaliador-sintatico":21,"../informacao-escopo":23,"../pilha-escopos":27,"browser-process-hrtime":401}],17:[function(require,module,exports){
|
|
7124
7124
|
"use strict";
|
|
7125
7125
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7126
7126
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8106,7 +8106,7 @@ class AvaliadorSintaticoTenda extends avaliador_sintatico_base_1.AvaliadorSintat
|
|
|
8106
8106
|
}
|
|
8107
8107
|
exports.AvaliadorSintaticoTenda = AvaliadorSintaticoTenda;
|
|
8108
8108
|
|
|
8109
|
-
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":109,"../../inferenciador":
|
|
8109
|
+
},{"../../bibliotecas/primitivas-dicionario":29,"../../bibliotecas/primitivas-numero":30,"../../bibliotecas/primitivas-texto":31,"../../bibliotecas/primitivas-vetor":32,"../../construtos":62,"../../construtos/tuplas":80,"../../declaracoes":109,"../../inferenciador":135,"../../informacao-elemento-sintatico":136,"../../lexador/simbolo":205,"../../tipos-de-dados/delegua":207,"../../tipos-de-simbolos/tenda":219,"../avaliador-sintatico-base":9,"./../erro-avaliador-sintatico":21,"./../informacao-escopo":23,"./../pilha-escopos":27,"browser-process-hrtime":401}],18:[function(require,module,exports){
|
|
8110
8110
|
"use strict";
|
|
8111
8111
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8112
8112
|
if (k2 === undefined) k2 = k;
|
|
@@ -8370,7 +8370,7 @@ class MicroAvaliadorSintaticoPitugues extends micro_avaliador_sintatico_base_1.M
|
|
|
8370
8370
|
}
|
|
8371
8371
|
exports.MicroAvaliadorSintaticoPitugues = MicroAvaliadorSintaticoPitugues;
|
|
8372
8372
|
|
|
8373
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
8373
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135,"../../tipos-de-simbolos/pitugues":216,"../micro-avaliador-sintatico-base":24}],20:[function(require,module,exports){
|
|
8374
8374
|
"use strict";
|
|
8375
8375
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8376
8376
|
exports.ElementoMontaoTipos = void 0;
|
|
@@ -8552,7 +8552,7 @@ class MicroAvaliadorSintaticoBase {
|
|
|
8552
8552
|
}
|
|
8553
8553
|
exports.MicroAvaliadorSintaticoBase = MicroAvaliadorSintaticoBase;
|
|
8554
8554
|
|
|
8555
|
-
},{"../construtos":62,"../tipos-de-simbolos/comum":
|
|
8555
|
+
},{"../construtos":62,"../tipos-de-simbolos/comum":211,"./erro-avaliador-sintatico":21}],25:[function(require,module,exports){
|
|
8556
8556
|
"use strict";
|
|
8557
8557
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8558
8558
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -8774,7 +8774,7 @@ class MicroAvaliadorSintatico extends micro_avaliador_sintatico_base_1.MicroAval
|
|
|
8774
8774
|
}
|
|
8775
8775
|
exports.MicroAvaliadorSintatico = MicroAvaliadorSintatico;
|
|
8776
8776
|
|
|
8777
|
-
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":
|
|
8777
|
+
},{"../construtos":62,"../tipos-de-simbolos/microgramaticas/delegua":215,"./micro-avaliador-sintatico-base":24}],26:[function(require,module,exports){
|
|
8778
8778
|
"use strict";
|
|
8779
8779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8780
8780
|
exports.MontaoTipos = void 0;
|
|
@@ -8825,7 +8825,7 @@ class MontaoTipos {
|
|
|
8825
8825
|
}
|
|
8826
8826
|
exports.MontaoTipos = MontaoTipos;
|
|
8827
8827
|
|
|
8828
|
-
},{"../geracao-identificadores":
|
|
8828
|
+
},{"../geracao-identificadores":133,"./erro-avaliador-sintatico":21}],27:[function(require,module,exports){
|
|
8829
8829
|
"use strict";
|
|
8830
8830
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8831
8831
|
exports.PilhaEscopos = void 0;
|
|
@@ -9829,7 +9829,7 @@ async function tupla(interpretador, vetor) {
|
|
|
9829
9829
|
}
|
|
9830
9830
|
}
|
|
9831
9831
|
|
|
9832
|
-
},{"../construtos":62,"../excecoes":
|
|
9832
|
+
},{"../construtos":62,"../excecoes":129,"../inferenciador":135,"../interpretador/estruturas":171,"../interpretador/estruturas/descritor-tipo-classe":169,"../interpretador/estruturas/funcao-padrao":170,"../interpretador/estruturas/objeto-delegua-classe":174,"../quebras":206}],29:[function(require,module,exports){
|
|
9833
9833
|
"use strict";
|
|
9834
9834
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9835
9835
|
const construtos_1 = require("../construtos");
|
|
@@ -9911,7 +9911,7 @@ exports.default = {
|
|
|
9911
9911
|
}
|
|
9912
9912
|
};
|
|
9913
9913
|
|
|
9914
|
-
},{"../construtos":62,"../informacao-elemento-sintatico":
|
|
9914
|
+
},{"../construtos":62,"../informacao-elemento-sintatico":136}],30:[function(require,module,exports){
|
|
9915
9915
|
"use strict";
|
|
9916
9916
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9917
9917
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -9996,7 +9996,7 @@ exports.default = {
|
|
|
9996
9996
|
},
|
|
9997
9997
|
};
|
|
9998
9998
|
|
|
9999
|
-
},{"../informacao-elemento-sintatico":
|
|
9999
|
+
},{"../informacao-elemento-sintatico":136}],31:[function(require,module,exports){
|
|
10000
10000
|
"use strict";
|
|
10001
10001
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10002
10002
|
exports.implementacaoParticao = void 0;
|
|
@@ -10326,7 +10326,7 @@ exports.default = {
|
|
|
10326
10326
|
},
|
|
10327
10327
|
};
|
|
10328
10328
|
|
|
10329
|
-
},{"../construtos":62,"../excecoes":
|
|
10329
|
+
},{"../construtos":62,"../excecoes":129,"../informacao-elemento-sintatico":136}],32:[function(require,module,exports){
|
|
10330
10330
|
"use strict";
|
|
10331
10331
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10332
10332
|
const informacao_elemento_sintatico_1 = require("../informacao-elemento-sintatico");
|
|
@@ -10701,7 +10701,7 @@ exports.default = {
|
|
|
10701
10701
|
},
|
|
10702
10702
|
};
|
|
10703
10703
|
|
|
10704
|
-
},{"../informacao-elemento-sintatico":
|
|
10704
|
+
},{"../informacao-elemento-sintatico":136}],33:[function(require,module,exports){
|
|
10705
10705
|
"use strict";
|
|
10706
10706
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10707
10707
|
exports.AcessoElementoMatriz = void 0;
|
|
@@ -11163,7 +11163,7 @@ class Chamada {
|
|
|
11163
11163
|
}
|
|
11164
11164
|
exports.Chamada = Chamada;
|
|
11165
11165
|
|
|
11166
|
-
},{"../geracao-identificadores":
|
|
11166
|
+
},{"../geracao-identificadores":133}],47:[function(require,module,exports){
|
|
11167
11167
|
"use strict";
|
|
11168
11168
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11169
11169
|
exports.ComentarioComoConstruto = void 0;
|
|
@@ -11648,7 +11648,7 @@ class Leia {
|
|
|
11648
11648
|
}
|
|
11649
11649
|
exports.Leia = Leia;
|
|
11650
11650
|
|
|
11651
|
-
},{"../geracao-identificadores":
|
|
11651
|
+
},{"../geracao-identificadores":133}],65:[function(require,module,exports){
|
|
11652
11652
|
"use strict";
|
|
11653
11653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11654
11654
|
exports.ListaCompreensao = void 0;
|
|
@@ -12813,7 +12813,7 @@ class FuncaoDeclaracao extends declaracao_1.Declaracao {
|
|
|
12813
12813
|
}
|
|
12814
12814
|
exports.FuncaoDeclaracao = FuncaoDeclaracao;
|
|
12815
12815
|
|
|
12816
|
-
},{"../geracao-identificadores":
|
|
12816
|
+
},{"../geracao-identificadores":133,"./declaracao":99}],108:[function(require,module,exports){
|
|
12817
12817
|
"use strict";
|
|
12818
12818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12819
12819
|
exports.Importar = void 0;
|
|
@@ -13673,7 +13673,7 @@ class RegraFortalecerTipos {
|
|
|
13673
13673
|
}
|
|
13674
13674
|
exports.RegraFortalecerTipos = RegraFortalecerTipos;
|
|
13675
13675
|
|
|
13676
|
-
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":
|
|
13676
|
+
},{"../../construtos":62,"../../declaracoes":109,"../../inferenciador":135}],126:[function(require,module,exports){
|
|
13677
13677
|
"use strict";
|
|
13678
13678
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13679
13679
|
if (k2 === undefined) k2 = k;
|
|
@@ -13692,8 +13692,99 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
13692
13692
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13693
13693
|
__exportStar(require("./fortalecer-tipos"), exports);
|
|
13694
13694
|
__exportStar(require("./convencao-nomenclatura"), exports);
|
|
13695
|
+
__exportStar(require("./paradigma-consistente"), exports);
|
|
13695
13696
|
|
|
13696
|
-
},{"./convencao-nomenclatura":124,"./fortalecer-tipos":125}],127:[function(require,module,exports){
|
|
13697
|
+
},{"./convencao-nomenclatura":124,"./fortalecer-tipos":125,"./paradigma-consistente":127}],127:[function(require,module,exports){
|
|
13698
|
+
"use strict";
|
|
13699
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13700
|
+
exports.RegraParadigmaConsistente = void 0;
|
|
13701
|
+
const leia_1 = require("../../construtos/leia");
|
|
13702
|
+
const declaracoes_1 = require("../../declaracoes");
|
|
13703
|
+
const mapeamento_paradigmas_1 = require("../../lexador/mapeamento-paradigmas");
|
|
13704
|
+
/**
|
|
13705
|
+
* Regra que enforça consistência de paradigma em palavras reservadas.
|
|
13706
|
+
*
|
|
13707
|
+
* Em português, instruções podem ser expressas no imperativo (escreva, leia)
|
|
13708
|
+
* ou no infinitivo (escrever, ler). Esta regra permite escolher um paradigma
|
|
13709
|
+
* único para manter a consistência do código.
|
|
13710
|
+
*
|
|
13711
|
+
* Exemplos:
|
|
13712
|
+
* - Modo imperativo: `escreva()`, `leia()`, `tente { } pegue { }`
|
|
13713
|
+
* - Modo infinitivo: `escrever()`, `ler()`, `tentar { } pegar { }`
|
|
13714
|
+
*/
|
|
13715
|
+
class RegraParadigmaConsistente {
|
|
13716
|
+
constructor(opcoes = {}) {
|
|
13717
|
+
this.nome = 'paradigma-consistente';
|
|
13718
|
+
this.descricao = 'Enforça consistência de paradigma (imperativo/infinitivo) em palavras reservadas';
|
|
13719
|
+
this.opcoes = {
|
|
13720
|
+
paradigma: opcoes.paradigma || 'ambos',
|
|
13721
|
+
};
|
|
13722
|
+
this.mapaLexemaParaParadigma = (0, mapeamento_paradigmas_1.obterMapaLexemaParaParadigma)();
|
|
13723
|
+
}
|
|
13724
|
+
aplicarEmDeclaracao(declaracao) {
|
|
13725
|
+
// Processa Escreva
|
|
13726
|
+
if (declaracao instanceof declaracoes_1.Escreva || declaracao instanceof declaracoes_1.EscrevaMesmaLinha) {
|
|
13727
|
+
return this.processarDeclaracaoComSimbolo(declaracao, 'simboloEscreva');
|
|
13728
|
+
}
|
|
13729
|
+
return declaracao;
|
|
13730
|
+
}
|
|
13731
|
+
aplicarEmConstruto(construto) {
|
|
13732
|
+
// Processa Leia
|
|
13733
|
+
if (construto instanceof leia_1.Leia) {
|
|
13734
|
+
return this.processarConstrutoComSimbolo(construto, 'simbolo');
|
|
13735
|
+
}
|
|
13736
|
+
return construto;
|
|
13737
|
+
}
|
|
13738
|
+
/**
|
|
13739
|
+
* Processa uma declaração que tem um símbolo específico.
|
|
13740
|
+
*/
|
|
13741
|
+
processarDeclaracaoComSimbolo(declaracao, nomeCampoSimbolo) {
|
|
13742
|
+
const simbolo = declaracao[nomeCampoSimbolo];
|
|
13743
|
+
if (!simbolo) {
|
|
13744
|
+
return declaracao;
|
|
13745
|
+
}
|
|
13746
|
+
const lexemaAtual = simbolo.lexema.toLowerCase();
|
|
13747
|
+
const paradigmaLexema = this.mapaLexemaParaParadigma.get(lexemaAtual);
|
|
13748
|
+
// Se for neutro ou ambos, não faz nada
|
|
13749
|
+
if (paradigmaLexema === 'neutro' || this.opcoes.paradigma === 'ambos') {
|
|
13750
|
+
return declaracao;
|
|
13751
|
+
}
|
|
13752
|
+
// Se o lexema não pertence ao paradigma configurado, transforma
|
|
13753
|
+
if (!(0, mapeamento_paradigmas_1.pertenceAoParadigma)(lexemaAtual, this.opcoes.paradigma)) {
|
|
13754
|
+
const formaAlternativa = (0, mapeamento_paradigmas_1.obterFormaAlternativa)(lexemaAtual, this.opcoes.paradigma);
|
|
13755
|
+
if (formaAlternativa) {
|
|
13756
|
+
simbolo.lexema = formaAlternativa;
|
|
13757
|
+
}
|
|
13758
|
+
}
|
|
13759
|
+
return declaracao;
|
|
13760
|
+
}
|
|
13761
|
+
/**
|
|
13762
|
+
* Processa um construto que tem um símbolo específico.
|
|
13763
|
+
*/
|
|
13764
|
+
processarConstrutoComSimbolo(construto, nomeCampoSimbolo) {
|
|
13765
|
+
const simbolo = construto[nomeCampoSimbolo];
|
|
13766
|
+
if (!simbolo) {
|
|
13767
|
+
return construto;
|
|
13768
|
+
}
|
|
13769
|
+
const lexemaAtual = simbolo.lexema.toLowerCase();
|
|
13770
|
+
const paradigmaLexema = this.mapaLexemaParaParadigma.get(lexemaAtual);
|
|
13771
|
+
// Se for neutro ou ambos, não faz nada
|
|
13772
|
+
if (paradigmaLexema === 'neutro' || this.opcoes.paradigma === 'ambos') {
|
|
13773
|
+
return construto;
|
|
13774
|
+
}
|
|
13775
|
+
// Se o lexema não pertence ao paradigma configurado, transforma
|
|
13776
|
+
if (!(0, mapeamento_paradigmas_1.pertenceAoParadigma)(lexemaAtual, this.opcoes.paradigma)) {
|
|
13777
|
+
const formaAlternativa = (0, mapeamento_paradigmas_1.obterFormaAlternativa)(lexemaAtual, this.opcoes.paradigma);
|
|
13778
|
+
if (formaAlternativa) {
|
|
13779
|
+
simbolo.lexema = formaAlternativa;
|
|
13780
|
+
}
|
|
13781
|
+
}
|
|
13782
|
+
return construto;
|
|
13783
|
+
}
|
|
13784
|
+
}
|
|
13785
|
+
exports.RegraParadigmaConsistente = RegraParadigmaConsistente;
|
|
13786
|
+
|
|
13787
|
+
},{"../../construtos/leia":64,"../../declaracoes":109,"../../lexador/mapeamento-paradigmas":201}],128:[function(require,module,exports){
|
|
13697
13788
|
"use strict";
|
|
13698
13789
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13699
13790
|
exports.ErroEmTempoDeExecucao = void 0;
|
|
@@ -13708,7 +13799,7 @@ class ErroEmTempoDeExecucao extends Error {
|
|
|
13708
13799
|
}
|
|
13709
13800
|
exports.ErroEmTempoDeExecucao = ErroEmTempoDeExecucao;
|
|
13710
13801
|
|
|
13711
|
-
},{}],
|
|
13802
|
+
},{}],129:[function(require,module,exports){
|
|
13712
13803
|
"use strict";
|
|
13713
13804
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13714
13805
|
if (k2 === undefined) k2 = k;
|
|
@@ -13727,7 +13818,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
13727
13818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13728
13819
|
__exportStar(require("./erro-em-tempo-de-execucao"), exports);
|
|
13729
13820
|
|
|
13730
|
-
},{"./erro-em-tempo-de-execucao":
|
|
13821
|
+
},{"./erro-em-tempo-de-execucao":128}],130:[function(require,module,exports){
|
|
13731
13822
|
"use strict";
|
|
13732
13823
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13733
13824
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14484,7 +14575,7 @@ class FormatadorDelegua {
|
|
|
14484
14575
|
}
|
|
14485
14576
|
exports.FormatadorDelegua = FormatadorDelegua;
|
|
14486
14577
|
|
|
14487
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
14578
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],131:[function(require,module,exports){
|
|
14488
14579
|
"use strict";
|
|
14489
14580
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14490
14581
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -14900,7 +14991,7 @@ class FormatadorPitugues {
|
|
|
14900
14991
|
}
|
|
14901
14992
|
exports.FormatadorPitugues = FormatadorPitugues;
|
|
14902
14993
|
|
|
14903
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/pitugues":
|
|
14994
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/pitugues":216}],132:[function(require,module,exports){
|
|
14904
14995
|
"use strict";
|
|
14905
14996
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14906
14997
|
if (k2 === undefined) k2 = k;
|
|
@@ -14920,7 +15011,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14920
15011
|
__exportStar(require("./formatador-delegua"), exports);
|
|
14921
15012
|
__exportStar(require("./formatador-pitugues"), exports);
|
|
14922
15013
|
|
|
14923
|
-
},{"./formatador-delegua":
|
|
15014
|
+
},{"./formatador-delegua":130,"./formatador-pitugues":131}],133:[function(require,module,exports){
|
|
14924
15015
|
"use strict";
|
|
14925
15016
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14926
15017
|
exports.cyrb53 = cyrb53;
|
|
@@ -14964,7 +15055,7 @@ function uuidv4() {
|
|
|
14964
15055
|
});
|
|
14965
15056
|
}
|
|
14966
15057
|
|
|
14967
|
-
},{}],
|
|
15058
|
+
},{}],134:[function(require,module,exports){
|
|
14968
15059
|
"use strict";
|
|
14969
15060
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14970
15061
|
if (k2 === undefined) k2 = k;
|
|
@@ -14993,7 +15084,7 @@ __exportStar(require("./interpretador"), exports);
|
|
|
14993
15084
|
__exportStar(require("./lexador"), exports);
|
|
14994
15085
|
__exportStar(require("./tradutores"), exports);
|
|
14995
15086
|
|
|
14996
|
-
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":62,"./declaracoes":109,"./estilizador":123,"./formatadores":
|
|
15087
|
+
},{"./analisador-semantico":6,"./avaliador-sintatico":22,"./construtos":62,"./declaracoes":109,"./estilizador":123,"./formatadores":132,"./geracao-identificadores":133,"./interfaces":143,"./interpretador":177,"./lexador":197,"./tradutores":220}],135:[function(require,module,exports){
|
|
14997
15088
|
"use strict";
|
|
14998
15089
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14999
15090
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -15122,7 +15213,7 @@ function tipoInferenciaParaTipoDadosElementar(tipoInferencia) {
|
|
|
15122
15213
|
}
|
|
15123
15214
|
}
|
|
15124
15215
|
|
|
15125
|
-
},{"./tipos-de-dados/delegua":
|
|
15216
|
+
},{"./tipos-de-dados/delegua":207,"./tipos-de-dados/primitivos":209,"./tipos-de-simbolos/delegua":212}],136:[function(require,module,exports){
|
|
15126
15217
|
"use strict";
|
|
15127
15218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15128
15219
|
exports.InformacaoElementoSintatico = void 0;
|
|
@@ -15141,15 +15232,15 @@ class InformacaoElementoSintatico {
|
|
|
15141
15232
|
}
|
|
15142
15233
|
exports.InformacaoElementoSintatico = InformacaoElementoSintatico;
|
|
15143
15234
|
|
|
15144
|
-
},{}],
|
|
15235
|
+
},{}],137:[function(require,module,exports){
|
|
15145
15236
|
"use strict";
|
|
15146
15237
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15147
15238
|
|
|
15148
|
-
},{}],
|
|
15239
|
+
},{}],138:[function(require,module,exports){
|
|
15149
15240
|
"use strict";
|
|
15150
15241
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15151
15242
|
|
|
15152
|
-
},{}],
|
|
15243
|
+
},{}],139:[function(require,module,exports){
|
|
15153
15244
|
"use strict";
|
|
15154
15245
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15155
15246
|
exports.DiagnosticoSeveridade = void 0;
|
|
@@ -15161,7 +15252,7 @@ var DiagnosticoSeveridade;
|
|
|
15161
15252
|
DiagnosticoSeveridade[DiagnosticoSeveridade["SUGESTAO"] = 3] = "SUGESTAO";
|
|
15162
15253
|
})(DiagnosticoSeveridade || (exports.DiagnosticoSeveridade = DiagnosticoSeveridade = {}));
|
|
15163
15254
|
|
|
15164
|
-
},{}],
|
|
15255
|
+
},{}],140:[function(require,module,exports){
|
|
15165
15256
|
"use strict";
|
|
15166
15257
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15167
15258
|
if (k2 === undefined) k2 = k;
|
|
@@ -15180,15 +15271,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15180
15271
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15181
15272
|
__exportStar(require("./diagnostico-analisador-semantico"), exports);
|
|
15182
15273
|
|
|
15183
|
-
},{"./diagnostico-analisador-semantico":
|
|
15274
|
+
},{"./diagnostico-analisador-semantico":139}],141:[function(require,module,exports){
|
|
15184
15275
|
"use strict";
|
|
15185
15276
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15186
15277
|
|
|
15187
|
-
},{}],
|
|
15278
|
+
},{}],142:[function(require,module,exports){
|
|
15188
15279
|
"use strict";
|
|
15189
15280
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15190
15281
|
|
|
15191
|
-
},{}],
|
|
15282
|
+
},{}],143:[function(require,module,exports){
|
|
15192
15283
|
"use strict";
|
|
15193
15284
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15194
15285
|
if (k2 === undefined) k2 = k;
|
|
@@ -15226,11 +15317,7 @@ __exportStar(require("./construtos"), exports);
|
|
|
15226
15317
|
__exportStar(require("./erros"), exports);
|
|
15227
15318
|
__exportStar(require("./retornos"), exports);
|
|
15228
15319
|
|
|
15229
|
-
},{"./avaliador-sintatico-interface":
|
|
15230
|
-
"use strict";
|
|
15231
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15232
|
-
|
|
15233
|
-
},{}],144:[function(require,module,exports){
|
|
15320
|
+
},{"./avaliador-sintatico-interface":137,"./construtos":138,"./erros":140,"./estilizador-comum-interface":141,"./formatador-comum-interface":142,"./interpretador-com-depuracao-interface":144,"./interpretador-interface":145,"./lexador-interface":146,"./parametro-interface":147,"./pilha-interface":148,"./primitiva-interface":149,"./resolvedor-interface":150,"./resultado-parcial-interpretador-interface":151,"./retornos":152,"./retornos/retorno-execucao-interface":155,"./simbolo-interface":158,"./tradutor-interface":159,"./variavel-interface":160,"./visitante-comum-interface":161,"./visitante-delegua-interface":162}],144:[function(require,module,exports){
|
|
15234
15321
|
"use strict";
|
|
15235
15322
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15236
15323
|
|
|
@@ -15260,6 +15347,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15260
15347
|
|
|
15261
15348
|
},{}],151:[function(require,module,exports){
|
|
15262
15349
|
"use strict";
|
|
15350
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15351
|
+
|
|
15352
|
+
},{}],152:[function(require,module,exports){
|
|
15353
|
+
"use strict";
|
|
15263
15354
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15264
15355
|
if (k2 === undefined) k2 = k;
|
|
15265
15356
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -15281,11 +15372,7 @@ __exportStar(require("./retorno-execucao-interface"), exports);
|
|
|
15281
15372
|
__exportStar(require("./retorno-interpretador-interface"), exports);
|
|
15282
15373
|
__exportStar(require("./retorno-lexador"), exports);
|
|
15283
15374
|
|
|
15284
|
-
},{"./retorno-analisador-semantico":
|
|
15285
|
-
"use strict";
|
|
15286
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15287
|
-
|
|
15288
|
-
},{}],153:[function(require,module,exports){
|
|
15375
|
+
},{"./retorno-analisador-semantico":153,"./retorno-avaliador-sintatico":154,"./retorno-execucao-interface":155,"./retorno-interpretador-interface":156,"./retorno-lexador":157}],153:[function(require,module,exports){
|
|
15289
15376
|
"use strict";
|
|
15290
15377
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15291
15378
|
|
|
@@ -15323,6 +15410,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15323
15410
|
|
|
15324
15411
|
},{}],162:[function(require,module,exports){
|
|
15325
15412
|
"use strict";
|
|
15413
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15414
|
+
|
|
15415
|
+
},{}],163:[function(require,module,exports){
|
|
15416
|
+
"use strict";
|
|
15326
15417
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15327
15418
|
if (k2 === undefined) k2 = k;
|
|
15328
15419
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -15688,7 +15779,7 @@ function obterAjudaFuncaoPadrao(funcaoPadrao) {
|
|
|
15688
15779
|
}
|
|
15689
15780
|
}
|
|
15690
15781
|
|
|
15691
|
-
},{"../bibliotecas/biblioteca-global":28,"../construtos":62,"./estruturas/funcao-padrao":
|
|
15782
|
+
},{"../bibliotecas/biblioteca-global":28,"../construtos":62,"./estruturas/funcao-padrao":170}],164:[function(require,module,exports){
|
|
15692
15783
|
"use strict";
|
|
15693
15784
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15694
15785
|
exports.EspacoMemoria = void 0;
|
|
@@ -15713,7 +15804,7 @@ class EspacoMemoria {
|
|
|
15713
15804
|
}
|
|
15714
15805
|
exports.EspacoMemoria = EspacoMemoria;
|
|
15715
15806
|
|
|
15716
|
-
},{}],
|
|
15807
|
+
},{}],165:[function(require,module,exports){
|
|
15717
15808
|
"use strict";
|
|
15718
15809
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15719
15810
|
exports.Chamavel = void 0;
|
|
@@ -15727,7 +15818,7 @@ class Chamavel {
|
|
|
15727
15818
|
}
|
|
15728
15819
|
exports.Chamavel = Chamavel;
|
|
15729
15820
|
|
|
15730
|
-
},{}],
|
|
15821
|
+
},{}],166:[function(require,module,exports){
|
|
15731
15822
|
"use strict";
|
|
15732
15823
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15733
15824
|
exports.ClasseDeModulo = void 0;
|
|
@@ -15748,7 +15839,7 @@ class ClasseDeModulo extends chamavel_1.Chamavel {
|
|
|
15748
15839
|
}
|
|
15749
15840
|
exports.ClasseDeModulo = ClasseDeModulo;
|
|
15750
15841
|
|
|
15751
|
-
},{"./chamavel":
|
|
15842
|
+
},{"./chamavel":165}],167:[function(require,module,exports){
|
|
15752
15843
|
"use strict";
|
|
15753
15844
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15754
15845
|
exports.ClassePadrao = void 0;
|
|
@@ -15789,7 +15880,7 @@ class ClassePadrao extends chamavel_1.Chamavel {
|
|
|
15789
15880
|
}
|
|
15790
15881
|
exports.ClassePadrao = ClassePadrao;
|
|
15791
15882
|
|
|
15792
|
-
},{"./chamavel":
|
|
15883
|
+
},{"./chamavel":165}],168:[function(require,module,exports){
|
|
15793
15884
|
"use strict";
|
|
15794
15885
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15795
15886
|
exports.DeleguaFuncao = void 0;
|
|
@@ -15934,7 +16025,7 @@ class DeleguaFuncao extends chamavel_1.Chamavel {
|
|
|
15934
16025
|
}
|
|
15935
16026
|
exports.DeleguaFuncao = DeleguaFuncao;
|
|
15936
16027
|
|
|
15937
|
-
},{"../../declaracoes":109,"../../quebras":
|
|
16028
|
+
},{"../../declaracoes":109,"../../quebras":206,"../espaco-memoria":164,"./chamavel":165}],169:[function(require,module,exports){
|
|
15938
16029
|
"use strict";
|
|
15939
16030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15940
16031
|
exports.DescritorTipoClasse = void 0;
|
|
@@ -16015,7 +16106,7 @@ class DescritorTipoClasse extends chamavel_1.Chamavel {
|
|
|
16015
16106
|
}
|
|
16016
16107
|
exports.DescritorTipoClasse = DescritorTipoClasse;
|
|
16017
16108
|
|
|
16018
|
-
},{"../../excecoes":
|
|
16109
|
+
},{"../../excecoes":129,"./chamavel":165,"./objeto-delegua-classe":174}],170:[function(require,module,exports){
|
|
16019
16110
|
"use strict";
|
|
16020
16111
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16021
16112
|
exports.FuncaoPadrao = void 0;
|
|
@@ -16052,7 +16143,7 @@ class FuncaoPadrao extends chamavel_1.Chamavel {
|
|
|
16052
16143
|
}
|
|
16053
16144
|
exports.FuncaoPadrao = FuncaoPadrao;
|
|
16054
16145
|
|
|
16055
|
-
},{"./chamavel":
|
|
16146
|
+
},{"./chamavel":165}],171:[function(require,module,exports){
|
|
16056
16147
|
"use strict";
|
|
16057
16148
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16058
16149
|
if (k2 === undefined) k2 = k;
|
|
@@ -16081,7 +16172,7 @@ __exportStar(require("./objeto-delegua-classe"), exports);
|
|
|
16081
16172
|
__exportStar(require("./objeto-padrao"), exports);
|
|
16082
16173
|
__exportStar(require("./referencia-montao"), exports);
|
|
16083
16174
|
|
|
16084
|
-
},{"./chamavel":
|
|
16175
|
+
},{"./chamavel":165,"./classe-de-modulo":166,"./classe-padrao":167,"./delegua-funcao":168,"./descritor-tipo-classe":169,"./funcao-padrao":170,"./metodo-primitiva":172,"./modulo":173,"./objeto-delegua-classe":174,"./objeto-padrao":175,"./referencia-montao":176}],172:[function(require,module,exports){
|
|
16085
16176
|
"use strict";
|
|
16086
16177
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16087
16178
|
exports.MetodoPrimitiva = void 0;
|
|
@@ -16127,7 +16218,7 @@ class MetodoPrimitiva extends chamavel_1.Chamavel {
|
|
|
16127
16218
|
}
|
|
16128
16219
|
exports.MetodoPrimitiva = MetodoPrimitiva;
|
|
16129
16220
|
|
|
16130
|
-
},{"./chamavel":
|
|
16221
|
+
},{"./chamavel":165}],173:[function(require,module,exports){
|
|
16131
16222
|
"use strict";
|
|
16132
16223
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16133
16224
|
exports.DeleguaModulo = void 0;
|
|
@@ -16153,7 +16244,7 @@ class DeleguaModulo {
|
|
|
16153
16244
|
}
|
|
16154
16245
|
exports.DeleguaModulo = DeleguaModulo;
|
|
16155
16246
|
|
|
16156
|
-
},{}],
|
|
16247
|
+
},{}],174:[function(require,module,exports){
|
|
16157
16248
|
"use strict";
|
|
16158
16249
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16159
16250
|
exports.ObjetoDeleguaClasse = void 0;
|
|
@@ -16221,7 +16312,7 @@ class ObjetoDeleguaClasse {
|
|
|
16221
16312
|
}
|
|
16222
16313
|
exports.ObjetoDeleguaClasse = ObjetoDeleguaClasse;
|
|
16223
16314
|
|
|
16224
|
-
},{"../../excecoes":
|
|
16315
|
+
},{"../../excecoes":129}],175:[function(require,module,exports){
|
|
16225
16316
|
"use strict";
|
|
16226
16317
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16227
16318
|
exports.ObjetoPadrao = void 0;
|
|
@@ -16255,7 +16346,7 @@ class ObjetoPadrao {
|
|
|
16255
16346
|
}
|
|
16256
16347
|
exports.ObjetoPadrao = ObjetoPadrao;
|
|
16257
16348
|
|
|
16258
|
-
},{}],
|
|
16349
|
+
},{}],176:[function(require,module,exports){
|
|
16259
16350
|
"use strict";
|
|
16260
16351
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16261
16352
|
exports.ReferenciaMontao = void 0;
|
|
@@ -16280,7 +16371,7 @@ class ReferenciaMontao {
|
|
|
16280
16371
|
}
|
|
16281
16372
|
exports.ReferenciaMontao = ReferenciaMontao;
|
|
16282
16373
|
|
|
16283
|
-
},{}],
|
|
16374
|
+
},{}],177:[function(require,module,exports){
|
|
16284
16375
|
"use strict";
|
|
16285
16376
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16286
16377
|
if (k2 === undefined) k2 = k;
|
|
@@ -16300,7 +16391,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16300
16391
|
__exportStar(require("./interpretador"), exports);
|
|
16301
16392
|
__exportStar(require("./interpretador-base"), exports);
|
|
16302
16393
|
|
|
16303
|
-
},{"./interpretador":
|
|
16394
|
+
},{"./interpretador":179,"./interpretador-base":178}],178:[function(require,module,exports){
|
|
16304
16395
|
(function (process){(function (){
|
|
16305
16396
|
"use strict";
|
|
16306
16397
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -17913,7 +18004,7 @@ class InterpretadorBase {
|
|
|
17913
18004
|
exports.InterpretadorBase = InterpretadorBase;
|
|
17914
18005
|
|
|
17915
18006
|
}).call(this)}).call(this,require('_process'))
|
|
17916
|
-
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":
|
|
18007
|
+
},{"../avaliador-sintatico":22,"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../excecoes":129,"../inferenciador":135,"../lexador":197,"../quebras":206,"../tipos-de-dados/delegua":207,"../tipos-de-dados/primitivos":209,"../tipos-de-simbolos/delegua":212,"./espaco-memoria":164,"./estruturas":171,"./estruturas/metodo-primitiva":172,"./pilha-escopos-execucao":181,"_process":455,"browser-process-hrtime":401}],179:[function(require,module,exports){
|
|
17917
18008
|
"use strict";
|
|
17918
18009
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17919
18010
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -18326,11 +18417,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
18326
18417
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Somente inteiros podem ser usados para indexar um vetor.', expressao.linha));
|
|
18327
18418
|
}
|
|
18328
18419
|
if (valorIndice < 0 && objeto.length !== 0) {
|
|
18329
|
-
|
|
18330
|
-
valorIndice += objeto.length;
|
|
18331
|
-
}
|
|
18420
|
+
valorIndice += objeto.length;
|
|
18332
18421
|
}
|
|
18333
|
-
if (valorIndice >= objeto.length) {
|
|
18422
|
+
if (valorIndice >= objeto.length || valorIndice < 0) {
|
|
18334
18423
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Índice do vetor fora do intervalo.', expressao.linha));
|
|
18335
18424
|
}
|
|
18336
18425
|
return objeto[valorIndice];
|
|
@@ -18352,11 +18441,9 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
18352
18441
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Somente inteiros podem ser usados para indexar um vetor.', expressao.linha));
|
|
18353
18442
|
}
|
|
18354
18443
|
if (valorIndice < 0 && objeto.length !== 0) {
|
|
18355
|
-
|
|
18356
|
-
valorIndice += objeto.length;
|
|
18357
|
-
}
|
|
18444
|
+
valorIndice += objeto.length;
|
|
18358
18445
|
}
|
|
18359
|
-
if (valorIndice >= objeto.length) {
|
|
18446
|
+
if (valorIndice >= objeto.length || valorIndice < 0) {
|
|
18360
18447
|
return Promise.reject(new excecoes_1.ErroEmTempoDeExecucao(expressao.simboloFechamento, 'Índice fora do tamanho.', expressao.linha));
|
|
18361
18448
|
}
|
|
18362
18449
|
return objeto.charAt(valorIndice);
|
|
@@ -18941,7 +19028,7 @@ class Interpretador extends interpretador_base_1.InterpretadorBase {
|
|
|
18941
19028
|
}
|
|
18942
19029
|
exports.Interpretador = Interpretador;
|
|
18943
19030
|
|
|
18944
|
-
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":109,"../excecoes":
|
|
19031
|
+
},{"../bibliotecas/primitivas-dicionario":29,"../bibliotecas/primitivas-numero":30,"../bibliotecas/primitivas-texto":31,"../bibliotecas/primitivas-vetor":32,"../construtos":62,"../declaracoes":109,"../excecoes":129,"../inferenciador":135,"../quebras":206,"../tipos-de-dados/delegua":207,"../tipos-de-dados/primitivos":209,"./comum":163,"./estruturas":171,"./interpretador-base":178,"./montao":180}],180:[function(require,module,exports){
|
|
18945
19032
|
"use strict";
|
|
18946
19033
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18947
19034
|
exports.Montao = void 0;
|
|
@@ -18998,7 +19085,7 @@ class Montao {
|
|
|
18998
19085
|
}
|
|
18999
19086
|
exports.Montao = Montao;
|
|
19000
19087
|
|
|
19001
|
-
},{"../excecoes":
|
|
19088
|
+
},{"../excecoes":129,"../geracao-identificadores":133}],181:[function(require,module,exports){
|
|
19002
19089
|
"use strict";
|
|
19003
19090
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19004
19091
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19286,7 +19373,7 @@ class PilhaEscoposExecucao {
|
|
|
19286
19373
|
}
|
|
19287
19374
|
exports.PilhaEscoposExecucao = PilhaEscoposExecucao;
|
|
19288
19375
|
|
|
19289
|
-
},{"../excecoes":
|
|
19376
|
+
},{"../excecoes":129,"../inferenciador":135,"../lexador":197,"../tipos-de-dados/delegua":207,"./estruturas":171}],182:[function(require,module,exports){
|
|
19290
19377
|
"use strict";
|
|
19291
19378
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
19292
19379
|
if (k2 === undefined) k2 = k;
|
|
@@ -19311,7 +19398,7 @@ __exportStar(require("./lexador-portugol-ipt"), exports);
|
|
|
19311
19398
|
__exportStar(require("./lexador-prisma"), exports);
|
|
19312
19399
|
__exportStar(require("./lexador-tenda"), exports);
|
|
19313
19400
|
|
|
19314
|
-
},{"./lexador-calango":
|
|
19401
|
+
},{"./lexador-calango":183,"./lexador-egua-classico":184,"./lexador-guarani":185,"./lexador-pitugues":186,"./lexador-portugol-ipt":187,"./lexador-prisma":188,"./lexador-tenda":189}],183:[function(require,module,exports){
|
|
19315
19402
|
"use strict";
|
|
19316
19403
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19317
19404
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19544,7 +19631,7 @@ class LexadorCalango {
|
|
|
19544
19631
|
}
|
|
19545
19632
|
exports.LexadorCalango = LexadorCalango;
|
|
19546
19633
|
|
|
19547
|
-
},{"../../tipos-de-simbolos/calango":
|
|
19634
|
+
},{"../../tipos-de-simbolos/calango":210,"../simbolo":205,"./palavras-reservadas/calango":190}],184:[function(require,module,exports){
|
|
19548
19635
|
"use strict";
|
|
19549
19636
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19550
19637
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19834,7 +19921,7 @@ class LexadorEguaClassico {
|
|
|
19834
19921
|
}
|
|
19835
19922
|
exports.LexadorEguaClassico = LexadorEguaClassico;
|
|
19836
19923
|
|
|
19837
|
-
},{"../../tipos-de-simbolos/egua-classico":
|
|
19924
|
+
},{"../../tipos-de-simbolos/egua-classico":213,"../simbolo":205,"./palavras-reservadas/egua-classico":191}],185:[function(require,module,exports){
|
|
19838
19925
|
"use strict";
|
|
19839
19926
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19840
19927
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -19953,7 +20040,7 @@ class LexadorGuarani extends lexador_base_1.LexadorBase {
|
|
|
19953
20040
|
}
|
|
19954
20041
|
exports.LexadorGuarani = LexadorGuarani;
|
|
19955
20042
|
|
|
19956
|
-
},{"../../tipos-de-simbolos/guarani":
|
|
20043
|
+
},{"../../tipos-de-simbolos/guarani":214,"../lexador-base":199,"./palavras-reservadas/guarani":192}],186:[function(require,module,exports){
|
|
19957
20044
|
"use strict";
|
|
19958
20045
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19959
20046
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20422,7 +20509,7 @@ class LexadorPitugues {
|
|
|
20422
20509
|
}
|
|
20423
20510
|
exports.LexadorPitugues = LexadorPitugues;
|
|
20424
20511
|
|
|
20425
|
-
},{"../../tipos-de-simbolos/pitugues":
|
|
20512
|
+
},{"../../tipos-de-simbolos/pitugues":216,"../simbolo":205,"./palavras-reservadas/pitugues":193,"browser-process-hrtime":401}],187:[function(require,module,exports){
|
|
20426
20513
|
"use strict";
|
|
20427
20514
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20428
20515
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -20674,7 +20761,7 @@ class LexadorPortugolIpt {
|
|
|
20674
20761
|
}
|
|
20675
20762
|
exports.LexadorPortugolIpt = LexadorPortugolIpt;
|
|
20676
20763
|
|
|
20677
|
-
},{"../../tipos-de-simbolos/portugol-ipt":
|
|
20764
|
+
},{"../../tipos-de-simbolos/portugol-ipt":217,"../simbolo":205,"./palavras-reservadas/portugol-ipt":194}],188:[function(require,module,exports){
|
|
20678
20765
|
"use strict";
|
|
20679
20766
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
20680
20767
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21032,7 +21119,7 @@ class LexadorPrisma {
|
|
|
21032
21119
|
}
|
|
21033
21120
|
exports.LexadorPrisma = LexadorPrisma;
|
|
21034
21121
|
|
|
21035
|
-
},{"../../tipos-de-simbolos/prisma":
|
|
21122
|
+
},{"../../tipos-de-simbolos/prisma":218,"../simbolo":205,"./palavras-reservadas/prisma":195,"browser-process-hrtime":401}],189:[function(require,module,exports){
|
|
21036
21123
|
"use strict";
|
|
21037
21124
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21038
21125
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21423,7 +21510,7 @@ class LexadorTenda {
|
|
|
21423
21510
|
}
|
|
21424
21511
|
exports.LexadorTenda = LexadorTenda;
|
|
21425
21512
|
|
|
21426
|
-
},{"../../tipos-de-simbolos/tenda":
|
|
21513
|
+
},{"../../tipos-de-simbolos/tenda":219,"../simbolo":205,"./palavras-reservadas/tenda":196,"browser-process-hrtime":401}],190:[function(require,module,exports){
|
|
21427
21514
|
"use strict";
|
|
21428
21515
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21429
21516
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21444,7 +21531,7 @@ exports.default = {
|
|
|
21444
21531
|
fimSe: calango_1.default.FIM_SE,
|
|
21445
21532
|
};
|
|
21446
21533
|
|
|
21447
|
-
},{"../../../tipos-de-simbolos/calango":
|
|
21534
|
+
},{"../../../tipos-de-simbolos/calango":210}],191:[function(require,module,exports){
|
|
21448
21535
|
"use strict";
|
|
21449
21536
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21450
21537
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21485,7 +21572,7 @@ exports.palavrasReservadas = {
|
|
|
21485
21572
|
verdadeiro: egua_classico_1.default.VERDADEIRO,
|
|
21486
21573
|
};
|
|
21487
21574
|
|
|
21488
|
-
},{"../../../tipos-de-simbolos/egua-classico":
|
|
21575
|
+
},{"../../../tipos-de-simbolos/egua-classico":213}],192:[function(require,module,exports){
|
|
21489
21576
|
"use strict";
|
|
21490
21577
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21491
21578
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21497,7 +21584,7 @@ exports.palavrasReservadas = {
|
|
|
21497
21584
|
hai: guarani_1.default.HAI,
|
|
21498
21585
|
};
|
|
21499
21586
|
|
|
21500
|
-
},{"../../../tipos-de-simbolos/guarani":
|
|
21587
|
+
},{"../../../tipos-de-simbolos/guarani":214}],193:[function(require,module,exports){
|
|
21501
21588
|
"use strict";
|
|
21502
21589
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21503
21590
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21559,7 +21646,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
21559
21646
|
verdadeiro: pitugues_1.default.VERDADEIRO,
|
|
21560
21647
|
};
|
|
21561
21648
|
|
|
21562
|
-
},{"../../../tipos-de-simbolos/pitugues":
|
|
21649
|
+
},{"../../../tipos-de-simbolos/pitugues":216}],194:[function(require,module,exports){
|
|
21563
21650
|
"use strict";
|
|
21564
21651
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21565
21652
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21581,7 +21668,7 @@ exports.palavrasReservadas = {
|
|
|
21581
21668
|
senão: portugol_ipt_1.default.SENAO,
|
|
21582
21669
|
};
|
|
21583
21670
|
|
|
21584
|
-
},{"../../../tipos-de-simbolos/portugol-ipt":
|
|
21671
|
+
},{"../../../tipos-de-simbolos/portugol-ipt":217}],195:[function(require,module,exports){
|
|
21585
21672
|
"use strict";
|
|
21586
21673
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21587
21674
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21629,7 +21716,7 @@ exports.palavrasReservadas = {
|
|
|
21629
21716
|
verdadeiro: prisma_1.default.VERDADEIRO,
|
|
21630
21717
|
};
|
|
21631
21718
|
|
|
21632
|
-
},{"../../../tipos-de-simbolos/prisma":
|
|
21719
|
+
},{"../../../tipos-de-simbolos/prisma":218}],196:[function(require,module,exports){
|
|
21633
21720
|
"use strict";
|
|
21634
21721
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21635
21722
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -21687,7 +21774,7 @@ exports.palavrasReservadas = {
|
|
|
21687
21774
|
Texto: tenda_1.default.BIBLIOTECA_GLOBAL,
|
|
21688
21775
|
};
|
|
21689
21776
|
|
|
21690
|
-
},{"../../../tipos-de-simbolos/tenda":
|
|
21777
|
+
},{"../../../tipos-de-simbolos/tenda":219}],197:[function(require,module,exports){
|
|
21691
21778
|
"use strict";
|
|
21692
21779
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
21693
21780
|
if (k2 === undefined) k2 = k;
|
|
@@ -21710,7 +21797,7 @@ __exportStar(require("./lexador-base-linha-unica"), exports);
|
|
|
21710
21797
|
__exportStar(require("./micro-lexador"), exports);
|
|
21711
21798
|
__exportStar(require("./simbolo"), exports);
|
|
21712
21799
|
|
|
21713
|
-
},{"./dialetos":
|
|
21800
|
+
},{"./dialetos":182,"./lexador":200,"./lexador-base-linha-unica":198,"./micro-lexador":203,"./simbolo":205}],198:[function(require,module,exports){
|
|
21714
21801
|
"use strict";
|
|
21715
21802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21716
21803
|
exports.LexadorBaseLinhaUnica = void 0;
|
|
@@ -21794,7 +21881,7 @@ class LexadorBaseLinhaUnica {
|
|
|
21794
21881
|
}
|
|
21795
21882
|
exports.LexadorBaseLinhaUnica = LexadorBaseLinhaUnica;
|
|
21796
21883
|
|
|
21797
|
-
},{"./simbolo":
|
|
21884
|
+
},{"./simbolo":205}],199:[function(require,module,exports){
|
|
21798
21885
|
"use strict";
|
|
21799
21886
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21800
21887
|
exports.LexadorBase = void 0;
|
|
@@ -21908,7 +21995,7 @@ class LexadorBase {
|
|
|
21908
21995
|
}
|
|
21909
21996
|
exports.LexadorBase = LexadorBase;
|
|
21910
21997
|
|
|
21911
|
-
},{"./simbolo":
|
|
21998
|
+
},{"./simbolo":205}],200:[function(require,module,exports){
|
|
21912
21999
|
"use strict";
|
|
21913
22000
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
21914
22001
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22379,7 +22466,191 @@ class Lexador {
|
|
|
22379
22466
|
}
|
|
22380
22467
|
exports.Lexador = Lexador;
|
|
22381
22468
|
|
|
22382
|
-
},{"../tipos-de-simbolos/delegua":
|
|
22469
|
+
},{"../tipos-de-simbolos/delegua":212,"./palavras-reservadas":204,"./simbolo":205,"browser-process-hrtime":401}],201:[function(require,module,exports){
|
|
22470
|
+
"use strict";
|
|
22471
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22472
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
22473
|
+
};
|
|
22474
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22475
|
+
exports.palavrasNeutras = exports.gruposPalavrasParadigma = void 0;
|
|
22476
|
+
exports.obterMapaLexemaParaParadigma = obterMapaLexemaParaParadigma;
|
|
22477
|
+
exports.obterFormaAlternativa = obterFormaAlternativa;
|
|
22478
|
+
exports.pertenceAoParadigma = pertenceAoParadigma;
|
|
22479
|
+
const delegua_1 = __importDefault(require("../tipos-de-simbolos/delegua"));
|
|
22480
|
+
/**
|
|
22481
|
+
* Grupos de palavras reservadas organizadas por paradigma.
|
|
22482
|
+
* Cada grupo representa diferentes formas de expressar a mesma funcionalidade.
|
|
22483
|
+
*/
|
|
22484
|
+
exports.gruposPalavrasParadigma = [
|
|
22485
|
+
{
|
|
22486
|
+
tipo: delegua_1.default.ESCREVA,
|
|
22487
|
+
imperativo: ['escreva'],
|
|
22488
|
+
infinitivo: ['escrever'],
|
|
22489
|
+
},
|
|
22490
|
+
{
|
|
22491
|
+
tipo: delegua_1.default.LEIA,
|
|
22492
|
+
imperativo: ['leia'],
|
|
22493
|
+
infinitivo: ['ler'],
|
|
22494
|
+
},
|
|
22495
|
+
{
|
|
22496
|
+
tipo: delegua_1.default.CONTINUA,
|
|
22497
|
+
imperativo: ['continua'],
|
|
22498
|
+
infinitivo: ['continuar'],
|
|
22499
|
+
},
|
|
22500
|
+
{
|
|
22501
|
+
tipo: delegua_1.default.RETORNA,
|
|
22502
|
+
imperativo: ['retorna', 'retorne'],
|
|
22503
|
+
infinitivo: ['retornar'],
|
|
22504
|
+
},
|
|
22505
|
+
{
|
|
22506
|
+
tipo: delegua_1.default.ESCOLHA,
|
|
22507
|
+
imperativo: ['escolha'],
|
|
22508
|
+
infinitivo: ['escolher'],
|
|
22509
|
+
},
|
|
22510
|
+
{
|
|
22511
|
+
tipo: delegua_1.default.TENTE,
|
|
22512
|
+
imperativo: ['tente'],
|
|
22513
|
+
infinitivo: ['tentar'],
|
|
22514
|
+
},
|
|
22515
|
+
{
|
|
22516
|
+
tipo: delegua_1.default.PEGUE,
|
|
22517
|
+
imperativo: ['pegue'],
|
|
22518
|
+
infinitivo: ['pegar'],
|
|
22519
|
+
},
|
|
22520
|
+
{
|
|
22521
|
+
tipo: delegua_1.default.QUEBRAR,
|
|
22522
|
+
imperativo: ['quebre'],
|
|
22523
|
+
infinitivo: ['quebrar'],
|
|
22524
|
+
},
|
|
22525
|
+
{
|
|
22526
|
+
tipo: delegua_1.default.IMPORTAR,
|
|
22527
|
+
imperativo: ['importe'],
|
|
22528
|
+
infinitivo: ['importar'],
|
|
22529
|
+
},
|
|
22530
|
+
{
|
|
22531
|
+
tipo: delegua_1.default.FAZER,
|
|
22532
|
+
imperativo: ['faca', 'faça'],
|
|
22533
|
+
infinitivo: ['fazer'],
|
|
22534
|
+
},
|
|
22535
|
+
];
|
|
22536
|
+
/**
|
|
22537
|
+
* Palavras neutras que não têm paradigma específico.
|
|
22538
|
+
* Estas palavras são aceitas em todos os modos de paradigma.
|
|
22539
|
+
*/
|
|
22540
|
+
exports.palavrasNeutras = {
|
|
22541
|
+
ajuda: delegua_1.default.AJUDA,
|
|
22542
|
+
cada: delegua_1.default.CADA,
|
|
22543
|
+
caso: delegua_1.default.CASO,
|
|
22544
|
+
classe: delegua_1.default.CLASSE,
|
|
22545
|
+
como: delegua_1.default.COMO,
|
|
22546
|
+
construtor: delegua_1.default.CONSTRUTOR,
|
|
22547
|
+
constante: delegua_1.default.CONSTANTE,
|
|
22548
|
+
const: delegua_1.default.CONSTANTE,
|
|
22549
|
+
contem: delegua_1.default.CONTEM,
|
|
22550
|
+
contém: delegua_1.default.CONTEM,
|
|
22551
|
+
de: delegua_1.default.DE,
|
|
22552
|
+
e: delegua_1.default.E,
|
|
22553
|
+
em: delegua_1.default.EM,
|
|
22554
|
+
enquanto: delegua_1.default.ENQUANTO,
|
|
22555
|
+
falhar: delegua_1.default.FALHAR,
|
|
22556
|
+
falso: delegua_1.default.FALSO,
|
|
22557
|
+
finalmente: delegua_1.default.FINALMENTE,
|
|
22558
|
+
fixo: delegua_1.default.CONSTANTE,
|
|
22559
|
+
funcao: delegua_1.default.FUNCAO,
|
|
22560
|
+
função: delegua_1.default.FUNÇÃO,
|
|
22561
|
+
herda: delegua_1.default.HERDA,
|
|
22562
|
+
isto: delegua_1.default.ISTO,
|
|
22563
|
+
nao: delegua_1.default.NAO,
|
|
22564
|
+
não: delegua_1.default.NAO,
|
|
22565
|
+
nulo: delegua_1.default.NULO,
|
|
22566
|
+
ou: delegua_1.default.OU,
|
|
22567
|
+
padrao: delegua_1.default.PADRAO,
|
|
22568
|
+
padrão: delegua_1.default.PADRAO,
|
|
22569
|
+
para: delegua_1.default.PARA,
|
|
22570
|
+
se: delegua_1.default.SE,
|
|
22571
|
+
senao: delegua_1.default.SENAO,
|
|
22572
|
+
senão: delegua_1.default.SENÃO,
|
|
22573
|
+
super: delegua_1.default.SUPER,
|
|
22574
|
+
sustar: delegua_1.default.SUSTAR,
|
|
22575
|
+
tendo: delegua_1.default.TENDO,
|
|
22576
|
+
tipo: delegua_1.default.TIPO,
|
|
22577
|
+
tudo: delegua_1.default.TUDO,
|
|
22578
|
+
var: delegua_1.default.VARIAVEL,
|
|
22579
|
+
variavel: delegua_1.default.VARIAVEL,
|
|
22580
|
+
variável: delegua_1.default.VARIAVEL,
|
|
22581
|
+
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
22582
|
+
};
|
|
22583
|
+
/**
|
|
22584
|
+
* Retorna um mapa de lexema para paradigma.
|
|
22585
|
+
* Útil para verificar rapidamente se uma palavra pertence a um paradigma.
|
|
22586
|
+
*/
|
|
22587
|
+
function obterMapaLexemaParaParadigma() {
|
|
22588
|
+
const mapa = new Map();
|
|
22589
|
+
// Adiciona palavras neutras
|
|
22590
|
+
for (const lexema of Object.keys(exports.palavrasNeutras)) {
|
|
22591
|
+
mapa.set(lexema, 'neutro');
|
|
22592
|
+
}
|
|
22593
|
+
// Adiciona palavras de paradigmas
|
|
22594
|
+
for (const grupo of exports.gruposPalavrasParadigma) {
|
|
22595
|
+
if (grupo.imperativo) {
|
|
22596
|
+
for (const lexema of grupo.imperativo) {
|
|
22597
|
+
mapa.set(lexema, 'imperativo');
|
|
22598
|
+
}
|
|
22599
|
+
}
|
|
22600
|
+
if (grupo.infinitivo) {
|
|
22601
|
+
for (const lexema of grupo.infinitivo) {
|
|
22602
|
+
mapa.set(lexema, 'infinitivo');
|
|
22603
|
+
}
|
|
22604
|
+
}
|
|
22605
|
+
}
|
|
22606
|
+
return mapa;
|
|
22607
|
+
}
|
|
22608
|
+
/**
|
|
22609
|
+
* Obtém a forma alternativa de uma palavra para o paradigma especificado.
|
|
22610
|
+
* @param lexema A palavra original
|
|
22611
|
+
* @param paradigmaAlvo O paradigma desejado
|
|
22612
|
+
* @returns A forma alternativa ou undefined se não houver conversão
|
|
22613
|
+
*/
|
|
22614
|
+
function obterFormaAlternativa(lexema, paradigmaAlvo) {
|
|
22615
|
+
var _a, _b;
|
|
22616
|
+
const lexemaLower = lexema.toLowerCase();
|
|
22617
|
+
// Encontra o grupo que contém este lexema
|
|
22618
|
+
for (const grupo of exports.gruposPalavrasParadigma) {
|
|
22619
|
+
const temImperativo = (_a = grupo.imperativo) === null || _a === void 0 ? void 0 : _a.some((p) => p === lexemaLower);
|
|
22620
|
+
const temInfinitivo = (_b = grupo.infinitivo) === null || _b === void 0 ? void 0 : _b.some((p) => p === lexemaLower);
|
|
22621
|
+
if (temImperativo || temInfinitivo) {
|
|
22622
|
+
// Retorna a primeira forma do paradigma alvo
|
|
22623
|
+
if (paradigmaAlvo === 'imperativo' && grupo.imperativo && grupo.imperativo.length > 0) {
|
|
22624
|
+
return grupo.imperativo[0];
|
|
22625
|
+
}
|
|
22626
|
+
if (paradigmaAlvo === 'infinitivo' && grupo.infinitivo && grupo.infinitivo.length > 0) {
|
|
22627
|
+
return grupo.infinitivo[0];
|
|
22628
|
+
}
|
|
22629
|
+
}
|
|
22630
|
+
}
|
|
22631
|
+
return undefined;
|
|
22632
|
+
}
|
|
22633
|
+
/**
|
|
22634
|
+
* Verifica se um lexema pertence a um paradigma específico.
|
|
22635
|
+
* @param lexema A palavra a verificar
|
|
22636
|
+
* @param paradigma O paradigma a verificar
|
|
22637
|
+
* @returns true se o lexema pertence ao paradigma ou é neutro
|
|
22638
|
+
*/
|
|
22639
|
+
function pertenceAoParadigma(lexema, paradigma) {
|
|
22640
|
+
if (paradigma === 'ambos') {
|
|
22641
|
+
return true;
|
|
22642
|
+
}
|
|
22643
|
+
const mapa = obterMapaLexemaParaParadigma();
|
|
22644
|
+
const paradigmaLexema = mapa.get(lexema.toLowerCase());
|
|
22645
|
+
// Palavras neutras são aceitas em todos os paradigmas
|
|
22646
|
+
if (paradigmaLexema === 'neutro') {
|
|
22647
|
+
return true;
|
|
22648
|
+
}
|
|
22649
|
+
// Verifica se o paradigma corresponde
|
|
22650
|
+
return paradigmaLexema === paradigma;
|
|
22651
|
+
}
|
|
22652
|
+
|
|
22653
|
+
},{"../tipos-de-simbolos/delegua":212}],202:[function(require,module,exports){
|
|
22383
22654
|
"use strict";
|
|
22384
22655
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22385
22656
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22594,7 +22865,7 @@ class MicroLexadorPitugues {
|
|
|
22594
22865
|
}
|
|
22595
22866
|
exports.MicroLexadorPitugues = MicroLexadorPitugues;
|
|
22596
22867
|
|
|
22597
|
-
},{"../tipos-de-simbolos/pitugues":
|
|
22868
|
+
},{"../tipos-de-simbolos/pitugues":216,"./palavras-reservadas":204,"./simbolo":205}],203:[function(require,module,exports){
|
|
22598
22869
|
"use strict";
|
|
22599
22870
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22600
22871
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22827,7 +23098,7 @@ class MicroLexador {
|
|
|
22827
23098
|
}
|
|
22828
23099
|
exports.MicroLexador = MicroLexador;
|
|
22829
23100
|
|
|
22830
|
-
},{"../tipos-de-simbolos/microgramaticas/delegua":
|
|
23101
|
+
},{"../tipos-de-simbolos/microgramaticas/delegua":215,"./palavras-reservadas":204,"./simbolo":205}],204:[function(require,module,exports){
|
|
22831
23102
|
"use strict";
|
|
22832
23103
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22833
23104
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -22909,7 +23180,7 @@ exports.palavrasReservadasMicroGramatica = {
|
|
|
22909
23180
|
verdadeiro: delegua_1.default.VERDADEIRO,
|
|
22910
23181
|
};
|
|
22911
23182
|
|
|
22912
|
-
},{"../tipos-de-simbolos/delegua":
|
|
23183
|
+
},{"../tipos-de-simbolos/delegua":212}],205:[function(require,module,exports){
|
|
22913
23184
|
"use strict";
|
|
22914
23185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22915
23186
|
exports.Simbolo = void 0;
|
|
@@ -22927,7 +23198,7 @@ class Simbolo {
|
|
|
22927
23198
|
}
|
|
22928
23199
|
exports.Simbolo = Simbolo;
|
|
22929
23200
|
|
|
22930
|
-
},{}],
|
|
23201
|
+
},{}],206:[function(require,module,exports){
|
|
22931
23202
|
"use strict";
|
|
22932
23203
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22933
23204
|
exports.ContinuarQuebra = exports.SustarQuebra = exports.RetornoQuebra = exports.Quebra = void 0;
|
|
@@ -22952,7 +23223,7 @@ class ContinuarQuebra extends Quebra {
|
|
|
22952
23223
|
}
|
|
22953
23224
|
exports.ContinuarQuebra = ContinuarQuebra;
|
|
22954
23225
|
|
|
22955
|
-
},{}],
|
|
23226
|
+
},{}],207:[function(require,module,exports){
|
|
22956
23227
|
"use strict";
|
|
22957
23228
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22958
23229
|
exports.default = {
|
|
@@ -22984,7 +23255,7 @@ exports.default = {
|
|
|
22984
23255
|
VETOR_TEXTO: 'texto[]',
|
|
22985
23256
|
};
|
|
22986
23257
|
|
|
22987
|
-
},{}],
|
|
23258
|
+
},{}],208:[function(require,module,exports){
|
|
22988
23259
|
"use strict";
|
|
22989
23260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22990
23261
|
exports.default = {
|
|
@@ -23014,7 +23285,7 @@ exports.default = {
|
|
|
23014
23285
|
VETOR_TEXTO: 'texto[]',
|
|
23015
23286
|
};
|
|
23016
23287
|
|
|
23017
|
-
},{}],
|
|
23288
|
+
},{}],209:[function(require,module,exports){
|
|
23018
23289
|
"use strict";
|
|
23019
23290
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23020
23291
|
exports.default = {
|
|
@@ -23033,7 +23304,7 @@ exports.default = {
|
|
|
23033
23304
|
TEXTO: 'string',
|
|
23034
23305
|
};
|
|
23035
23306
|
|
|
23036
|
-
},{}],
|
|
23307
|
+
},{}],210:[function(require,module,exports){
|
|
23037
23308
|
"use strict";
|
|
23038
23309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23039
23310
|
exports.default = {
|
|
@@ -23077,7 +23348,7 @@ exports.default = {
|
|
|
23077
23348
|
VIRGULA: 'VIRGULA',
|
|
23078
23349
|
};
|
|
23079
23350
|
|
|
23080
|
-
},{}],
|
|
23351
|
+
},{}],211:[function(require,module,exports){
|
|
23081
23352
|
"use strict";
|
|
23082
23353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23083
23354
|
exports.default = {
|
|
@@ -23103,7 +23374,7 @@ exports.default = {
|
|
|
23103
23374
|
VIRGULA: 'VIRGULA',
|
|
23104
23375
|
};
|
|
23105
23376
|
|
|
23106
|
-
},{}],
|
|
23377
|
+
},{}],212:[function(require,module,exports){
|
|
23107
23378
|
"use strict";
|
|
23108
23379
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23109
23380
|
exports.default = {
|
|
@@ -23204,7 +23475,7 @@ exports.default = {
|
|
|
23204
23475
|
VIRGULA: 'VIRGULA',
|
|
23205
23476
|
};
|
|
23206
23477
|
|
|
23207
|
-
},{}],
|
|
23478
|
+
},{}],213:[function(require,module,exports){
|
|
23208
23479
|
"use strict";
|
|
23209
23480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23210
23481
|
exports.default = {
|
|
@@ -23282,7 +23553,7 @@ exports.default = {
|
|
|
23282
23553
|
VIRGULA: 'VIRGULA',
|
|
23283
23554
|
};
|
|
23284
23555
|
|
|
23285
|
-
},{}],
|
|
23556
|
+
},{}],214:[function(require,module,exports){
|
|
23286
23557
|
"use strict";
|
|
23287
23558
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23288
23559
|
exports.default = {
|
|
@@ -23299,7 +23570,7 @@ exports.default = {
|
|
|
23299
23570
|
VIRGULA: 'VIRGULA',
|
|
23300
23571
|
};
|
|
23301
23572
|
|
|
23302
|
-
},{}],
|
|
23573
|
+
},{}],215:[function(require,module,exports){
|
|
23303
23574
|
"use strict";
|
|
23304
23575
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23305
23576
|
exports.default = {
|
|
@@ -23352,7 +23623,7 @@ exports.default = {
|
|
|
23352
23623
|
VIRGULA: 'VIRGULA',
|
|
23353
23624
|
};
|
|
23354
23625
|
|
|
23355
|
-
},{}],
|
|
23626
|
+
},{}],216:[function(require,module,exports){
|
|
23356
23627
|
"use strict";
|
|
23357
23628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23358
23629
|
exports.default = {
|
|
@@ -23440,7 +23711,7 @@ exports.default = {
|
|
|
23440
23711
|
VIRGULA: 'VIRGULA',
|
|
23441
23712
|
};
|
|
23442
23713
|
|
|
23443
|
-
},{}],
|
|
23714
|
+
},{}],217:[function(require,module,exports){
|
|
23444
23715
|
"use strict";
|
|
23445
23716
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23446
23717
|
exports.default = {
|
|
@@ -23479,7 +23750,7 @@ exports.default = {
|
|
|
23479
23750
|
VIRGULA: 'VIRGULA',
|
|
23480
23751
|
};
|
|
23481
23752
|
|
|
23482
|
-
},{}],
|
|
23753
|
+
},{}],218:[function(require,module,exports){
|
|
23483
23754
|
"use strict";
|
|
23484
23755
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23485
23756
|
exports.default = {
|
|
@@ -23559,7 +23830,7 @@ exports.default = {
|
|
|
23559
23830
|
VIRGULA: 'VIRGULA',
|
|
23560
23831
|
};
|
|
23561
23832
|
|
|
23562
|
-
},{}],
|
|
23833
|
+
},{}],219:[function(require,module,exports){
|
|
23563
23834
|
"use strict";
|
|
23564
23835
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23565
23836
|
// Em Tenda, isto é implementado em https://github.com/gabrielbrunop/tenda/blob/main/crates/scanner/src/token.rs#L42.
|
|
@@ -23654,7 +23925,7 @@ exports.default = {
|
|
|
23654
23925
|
VIRGULA: 'VIRGULA',
|
|
23655
23926
|
};
|
|
23656
23927
|
|
|
23657
|
-
},{}],
|
|
23928
|
+
},{}],220:[function(require,module,exports){
|
|
23658
23929
|
"use strict";
|
|
23659
23930
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
23660
23931
|
if (k2 === undefined) k2 = k;
|
|
@@ -23683,7 +23954,7 @@ __exportStar(require("./tradutor-reverso-javascript"), exports);
|
|
|
23683
23954
|
__exportStar(require("./tradutor-reverso-python"), exports);
|
|
23684
23955
|
__exportStar(require("./tradutor-reverso-tenda"), exports);
|
|
23685
23956
|
|
|
23686
|
-
},{"./tradutor-assembly-arm":
|
|
23957
|
+
},{"./tradutor-assembly-arm":229,"./tradutor-assembly-x64":230,"./tradutor-assemblyscript":231,"./tradutor-calango":232,"./tradutor-javascript":233,"./tradutor-mermaidjs":234,"./tradutor-portugol-ipt":235,"./tradutor-python":236,"./tradutor-reverso-javascript":237,"./tradutor-reverso-python":238,"./tradutor-reverso-tenda":239}],221:[function(require,module,exports){
|
|
23687
23958
|
"use strict";
|
|
23688
23959
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23689
23960
|
exports.ArestaFluxograma = void 0;
|
|
@@ -23695,7 +23966,7 @@ class ArestaFluxograma {
|
|
|
23695
23966
|
}
|
|
23696
23967
|
exports.ArestaFluxograma = ArestaFluxograma;
|
|
23697
23968
|
|
|
23698
|
-
},{}],
|
|
23969
|
+
},{}],222:[function(require,module,exports){
|
|
23699
23970
|
"use strict";
|
|
23700
23971
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23701
23972
|
exports.DiagramaClasse = void 0;
|
|
@@ -23729,7 +24000,7 @@ class DiagramaClasse {
|
|
|
23729
24000
|
}
|
|
23730
24001
|
exports.DiagramaClasse = DiagramaClasse;
|
|
23731
24002
|
|
|
23732
|
-
},{}],
|
|
24003
|
+
},{}],223:[function(require,module,exports){
|
|
23733
24004
|
"use strict";
|
|
23734
24005
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
23735
24006
|
if (k2 === undefined) k2 = k;
|
|
@@ -23752,7 +24023,7 @@ __exportStar(require("./subgrafo-classe"), exports);
|
|
|
23752
24023
|
__exportStar(require("./subgrafo-funcao"), exports);
|
|
23753
24024
|
__exportStar(require("./vertice-fluxograma"), exports);
|
|
23754
24025
|
|
|
23755
|
-
},{"./aresta-fluxograma":
|
|
24026
|
+
},{"./aresta-fluxograma":221,"./diagrama-classe":222,"./subgrafo-classe":224,"./subgrafo-funcao":225,"./vertice-fluxograma":226}],224:[function(require,module,exports){
|
|
23756
24027
|
"use strict";
|
|
23757
24028
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23758
24029
|
exports.SubgrafoClasse = void 0;
|
|
@@ -23798,7 +24069,7 @@ class SubgrafoClasse {
|
|
|
23798
24069
|
}
|
|
23799
24070
|
exports.SubgrafoClasse = SubgrafoClasse;
|
|
23800
24071
|
|
|
23801
|
-
},{}],
|
|
24072
|
+
},{}],225:[function(require,module,exports){
|
|
23802
24073
|
"use strict";
|
|
23803
24074
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23804
24075
|
exports.SubgrafoFuncao = void 0;
|
|
@@ -23813,7 +24084,7 @@ class SubgrafoFuncao {
|
|
|
23813
24084
|
}
|
|
23814
24085
|
exports.SubgrafoFuncao = SubgrafoFuncao;
|
|
23815
24086
|
|
|
23816
|
-
},{}],
|
|
24087
|
+
},{}],226:[function(require,module,exports){
|
|
23817
24088
|
"use strict";
|
|
23818
24089
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23819
24090
|
exports.VerticeFluxograma = void 0;
|
|
@@ -23830,7 +24101,7 @@ class VerticeFluxograma {
|
|
|
23830
24101
|
}
|
|
23831
24102
|
exports.VerticeFluxograma = VerticeFluxograma;
|
|
23832
24103
|
|
|
23833
|
-
},{}],
|
|
24104
|
+
},{}],227:[function(require,module,exports){
|
|
23834
24105
|
"use strict";
|
|
23835
24106
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
23836
24107
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -25070,7 +25341,7 @@ __decorate([
|
|
|
25070
25341
|
Decorators_1.Override
|
|
25071
25342
|
], Python3Lexer.prototype, "nextToken", null);
|
|
25072
25343
|
|
|
25073
|
-
},{"./python3-parser":
|
|
25344
|
+
},{"./python3-parser":228,"antlr4ts/CommonToken":249,"antlr4ts/Decorators":253,"antlr4ts/Lexer":261,"antlr4ts/Token":278,"antlr4ts/VocabularyImpl":284,"antlr4ts/atn/ATNDeserializer":290,"antlr4ts/atn/LexerATNSimulator":311,"antlr4ts/misc/Utils":372}],228:[function(require,module,exports){
|
|
25074
25345
|
"use strict";
|
|
25075
25346
|
// Generated from fontes\tradutores\python\Python3.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
25076
25347
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -36317,7 +36588,7 @@ class Yield_argContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
36317
36588
|
}
|
|
36318
36589
|
exports.Yield_argContext = Yield_argContext;
|
|
36319
36590
|
|
|
36320
|
-
},{"antlr4ts/FailedPredicateException":
|
|
36591
|
+
},{"antlr4ts/FailedPredicateException":257,"antlr4ts/NoViableAltException":265,"antlr4ts/Parser":266,"antlr4ts/ParserRuleContext":269,"antlr4ts/RecognitionException":272,"antlr4ts/Token":278,"antlr4ts/VocabularyImpl":284,"antlr4ts/atn/ATN":286,"antlr4ts/atn/ATNDeserializer":290,"antlr4ts/atn/ParserATNSimulator":327,"antlr4ts/misc/Utils":372}],229:[function(require,module,exports){
|
|
36321
36592
|
"use strict";
|
|
36322
36593
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36323
36594
|
exports.TradutorAssemblyARM = void 0;
|
|
@@ -37033,7 +37304,7 @@ ${labelFim}:`;
|
|
|
37033
37304
|
}
|
|
37034
37305
|
exports.TradutorAssemblyARM = TradutorAssemblyARM;
|
|
37035
37306
|
|
|
37036
|
-
},{"../construtos":62,"../declaracoes":109}],
|
|
37307
|
+
},{"../construtos":62,"../declaracoes":109}],230:[function(require,module,exports){
|
|
37037
37308
|
"use strict";
|
|
37038
37309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37039
37310
|
exports.TradutorAssemblyX64 = void 0;
|
|
@@ -37701,7 +37972,7 @@ ${labelFim}:`;
|
|
|
37701
37972
|
}
|
|
37702
37973
|
exports.TradutorAssemblyX64 = TradutorAssemblyX64;
|
|
37703
37974
|
|
|
37704
|
-
},{"../construtos":62,"../declaracoes":109}],
|
|
37975
|
+
},{"../construtos":62,"../declaracoes":109}],231:[function(require,module,exports){
|
|
37705
37976
|
"use strict";
|
|
37706
37977
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37707
37978
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -38336,7 +38607,7 @@ class TradutorAssemblyScript {
|
|
|
38336
38607
|
}
|
|
38337
38608
|
exports.TradutorAssemblyScript = TradutorAssemblyScript;
|
|
38338
38609
|
|
|
38339
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
38610
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],232:[function(require,module,exports){
|
|
38340
38611
|
"use strict";
|
|
38341
38612
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38342
38613
|
exports.TradutorCalango = void 0;
|
|
@@ -38398,7 +38669,7 @@ class TradutorCalango {
|
|
|
38398
38669
|
}
|
|
38399
38670
|
exports.TradutorCalango = TradutorCalango;
|
|
38400
38671
|
|
|
38401
|
-
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":12,"../lexador/dialetos":
|
|
38672
|
+
},{"../avaliador-sintatico/dialetos/avaliador-sintatico-calango":12,"../lexador/dialetos":182}],233:[function(require,module,exports){
|
|
38402
38673
|
"use strict";
|
|
38403
38674
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
38404
38675
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -39151,7 +39422,7 @@ class TradutorJavaScript {
|
|
|
39151
39422
|
}
|
|
39152
39423
|
exports.TradutorJavaScript = TradutorJavaScript;
|
|
39153
39424
|
|
|
39154
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
39425
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],234:[function(require,module,exports){
|
|
39155
39426
|
"use strict";
|
|
39156
39427
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39157
39428
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -39682,7 +39953,7 @@ class TradutorMermaidJs {
|
|
|
39682
39953
|
}
|
|
39683
39954
|
exports.TradutorMermaidJs = TradutorMermaidJs;
|
|
39684
39955
|
|
|
39685
|
-
},{"../tipos-de-simbolos/delegua":
|
|
39956
|
+
},{"../tipos-de-simbolos/delegua":212,"./mermaid":223}],235:[function(require,module,exports){
|
|
39686
39957
|
"use strict";
|
|
39687
39958
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39688
39959
|
exports.TradutorPortugolIpt = void 0;
|
|
@@ -39744,7 +40015,7 @@ class TradutorPortugolIpt {
|
|
|
39744
40015
|
}
|
|
39745
40016
|
exports.TradutorPortugolIpt = TradutorPortugolIpt;
|
|
39746
40017
|
|
|
39747
|
-
},{"../avaliador-sintatico/dialetos":18,"../lexador/dialetos":
|
|
40018
|
+
},{"../avaliador-sintatico/dialetos":18,"../lexador/dialetos":182}],236:[function(require,module,exports){
|
|
39748
40019
|
"use strict";
|
|
39749
40020
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39750
40021
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -40393,7 +40664,7 @@ class TradutorPython {
|
|
|
40393
40664
|
}
|
|
40394
40665
|
exports.TradutorPython = TradutorPython;
|
|
40395
40666
|
|
|
40396
|
-
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":
|
|
40667
|
+
},{"../construtos":62,"../declaracoes":109,"../tipos-de-simbolos/delegua":212}],237:[function(require,module,exports){
|
|
40397
40668
|
"use strict";
|
|
40398
40669
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40399
40670
|
exports.TradutorReversoJavaScript = void 0;
|
|
@@ -40790,7 +41061,7 @@ class TradutorReversoJavaScript {
|
|
|
40790
41061
|
}
|
|
40791
41062
|
exports.TradutorReversoJavaScript = TradutorReversoJavaScript;
|
|
40792
41063
|
|
|
40793
|
-
},{}],
|
|
41064
|
+
},{}],238:[function(require,module,exports){
|
|
40794
41065
|
"use strict";
|
|
40795
41066
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40796
41067
|
exports.TradutorReversoPython = void 0;
|
|
@@ -40863,7 +41134,7 @@ class TradutorReversoPython {
|
|
|
40863
41134
|
}
|
|
40864
41135
|
exports.TradutorReversoPython = TradutorReversoPython;
|
|
40865
41136
|
|
|
40866
|
-
},{"./python/python3-lexer":
|
|
41137
|
+
},{"./python/python3-lexer":227,"./python/python3-parser":228,"antlr4ts":355,"antlr4ts/tree/ParseTreeWalker":374}],239:[function(require,module,exports){
|
|
40867
41138
|
"use strict";
|
|
40868
41139
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
40869
41140
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -41457,7 +41728,7 @@ class TradutorReversoTenda {
|
|
|
41457
41728
|
}
|
|
41458
41729
|
exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
41459
41730
|
|
|
41460
|
-
},{"../construtos":62,"../tipos-de-simbolos/tenda":
|
|
41731
|
+
},{"../construtos":62,"../tipos-de-simbolos/tenda":219}],240:[function(require,module,exports){
|
|
41461
41732
|
"use strict";
|
|
41462
41733
|
/*!
|
|
41463
41734
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41465,7 +41736,7 @@ exports.TradutorReversoTenda = TradutorReversoTenda;
|
|
|
41465
41736
|
*/
|
|
41466
41737
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41467
41738
|
|
|
41468
|
-
},{}],
|
|
41739
|
+
},{}],241:[function(require,module,exports){
|
|
41469
41740
|
"use strict";
|
|
41470
41741
|
/*!
|
|
41471
41742
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41473,7 +41744,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
41473
41744
|
*/
|
|
41474
41745
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41475
41746
|
|
|
41476
|
-
},{}],
|
|
41747
|
+
},{}],242:[function(require,module,exports){
|
|
41477
41748
|
"use strict";
|
|
41478
41749
|
/*!
|
|
41479
41750
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41635,7 +41906,7 @@ __decorate([
|
|
|
41635
41906
|
], ANTLRInputStream.prototype, "toString", null);
|
|
41636
41907
|
exports.ANTLRInputStream = ANTLRInputStream;
|
|
41637
41908
|
|
|
41638
|
-
},{"./Decorators":
|
|
41909
|
+
},{"./Decorators":253,"./IntStream":259,"assert":396}],243:[function(require,module,exports){
|
|
41639
41910
|
"use strict";
|
|
41640
41911
|
/*!
|
|
41641
41912
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -41718,7 +41989,7 @@ __decorate([
|
|
|
41718
41989
|
], BailErrorStrategy.prototype, "sync", null);
|
|
41719
41990
|
exports.BailErrorStrategy = BailErrorStrategy;
|
|
41720
41991
|
|
|
41721
|
-
},{"./Decorators":
|
|
41992
|
+
},{"./Decorators":253,"./DefaultErrorStrategy":254,"./InputMismatchException":258,"./misc/ParseCancellationException":370}],244:[function(require,module,exports){
|
|
41722
41993
|
"use strict";
|
|
41723
41994
|
/*!
|
|
41724
41995
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42208,7 +42479,7 @@ BufferedTokenStream = __decorate([
|
|
|
42208
42479
|
], BufferedTokenStream);
|
|
42209
42480
|
exports.BufferedTokenStream = BufferedTokenStream;
|
|
42210
42481
|
|
|
42211
|
-
},{"./CommonToken":
|
|
42482
|
+
},{"./CommonToken":249,"./Decorators":253,"./Lexer":261,"./Token":278,"./misc/Interval":365,"assert":396}],245:[function(require,module,exports){
|
|
42212
42483
|
"use strict";
|
|
42213
42484
|
/*!
|
|
42214
42485
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42216,7 +42487,7 @@ exports.BufferedTokenStream = BufferedTokenStream;
|
|
|
42216
42487
|
*/
|
|
42217
42488
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42218
42489
|
|
|
42219
|
-
},{}],
|
|
42490
|
+
},{}],246:[function(require,module,exports){
|
|
42220
42491
|
"use strict";
|
|
42221
42492
|
/*!
|
|
42222
42493
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42350,7 +42621,7 @@ var CharStreams;
|
|
|
42350
42621
|
// }
|
|
42351
42622
|
})(CharStreams = exports.CharStreams || (exports.CharStreams = {}));
|
|
42352
42623
|
|
|
42353
|
-
},{"./CodePointBuffer":
|
|
42624
|
+
},{"./CodePointBuffer":247,"./CodePointCharStream":248,"./IntStream":259}],247:[function(require,module,exports){
|
|
42354
42625
|
"use strict";
|
|
42355
42626
|
/*!
|
|
42356
42627
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42585,7 +42856,7 @@ exports.CodePointBuffer = CodePointBuffer;
|
|
|
42585
42856
|
CodePointBuffer.Builder = Builder;
|
|
42586
42857
|
})(CodePointBuffer = exports.CodePointBuffer || (exports.CodePointBuffer = {}));
|
|
42587
42858
|
|
|
42588
|
-
},{"./misc/Character":
|
|
42859
|
+
},{"./misc/Character":361,"assert":396}],248:[function(require,module,exports){
|
|
42589
42860
|
"use strict";
|
|
42590
42861
|
/*!
|
|
42591
42862
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42735,7 +43006,7 @@ __decorate([
|
|
|
42735
43006
|
], CodePointCharStream.prototype, "getText", null);
|
|
42736
43007
|
exports.CodePointCharStream = CodePointCharStream;
|
|
42737
43008
|
|
|
42738
|
-
},{"./Decorators":
|
|
43009
|
+
},{"./Decorators":253,"./IntStream":259,"./misc/Interval":365,"assert":396}],249:[function(require,module,exports){
|
|
42739
43010
|
"use strict";
|
|
42740
43011
|
/*!
|
|
42741
43012
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -42965,7 +43236,7 @@ CommonToken = __decorate([
|
|
|
42965
43236
|
], CommonToken);
|
|
42966
43237
|
exports.CommonToken = CommonToken;
|
|
42967
43238
|
|
|
42968
|
-
},{"./Decorators":
|
|
43239
|
+
},{"./Decorators":253,"./Token":278,"./misc/Interval":365}],250:[function(require,module,exports){
|
|
42969
43240
|
"use strict";
|
|
42970
43241
|
/*!
|
|
42971
43242
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43029,7 +43300,7 @@ exports.CommonTokenFactory = CommonTokenFactory;
|
|
|
43029
43300
|
CommonTokenFactory.DEFAULT = new CommonTokenFactory();
|
|
43030
43301
|
})(CommonTokenFactory = exports.CommonTokenFactory || (exports.CommonTokenFactory = {}));
|
|
43031
43302
|
|
|
43032
|
-
},{"./CommonToken":
|
|
43303
|
+
},{"./CommonToken":249,"./Decorators":253,"./misc/Interval":365}],251:[function(require,module,exports){
|
|
43033
43304
|
"use strict";
|
|
43034
43305
|
/*!
|
|
43035
43306
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43156,7 +43427,7 @@ CommonTokenStream = __decorate([
|
|
|
43156
43427
|
], CommonTokenStream);
|
|
43157
43428
|
exports.CommonTokenStream = CommonTokenStream;
|
|
43158
43429
|
|
|
43159
|
-
},{"./BufferedTokenStream":
|
|
43430
|
+
},{"./BufferedTokenStream":244,"./Decorators":253,"./Token":278}],252:[function(require,module,exports){
|
|
43160
43431
|
"use strict";
|
|
43161
43432
|
/*!
|
|
43162
43433
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43190,7 +43461,7 @@ exports.ConsoleErrorListener = ConsoleErrorListener;
|
|
|
43190
43461
|
*/
|
|
43191
43462
|
ConsoleErrorListener.INSTANCE = new ConsoleErrorListener();
|
|
43192
43463
|
|
|
43193
|
-
},{}],
|
|
43464
|
+
},{}],253:[function(require,module,exports){
|
|
43194
43465
|
"use strict";
|
|
43195
43466
|
/*!
|
|
43196
43467
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -43217,7 +43488,7 @@ function SuppressWarnings(options) {
|
|
|
43217
43488
|
}
|
|
43218
43489
|
exports.SuppressWarnings = SuppressWarnings;
|
|
43219
43490
|
|
|
43220
|
-
},{}],
|
|
43491
|
+
},{}],254:[function(require,module,exports){
|
|
43221
43492
|
"use strict";
|
|
43222
43493
|
/*!
|
|
43223
43494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44031,7 +44302,7 @@ __decorate([
|
|
|
44031
44302
|
], DefaultErrorStrategy.prototype, "consumeUntil", null);
|
|
44032
44303
|
exports.DefaultErrorStrategy = DefaultErrorStrategy;
|
|
44033
44304
|
|
|
44034
|
-
},{"./Decorators":
|
|
44305
|
+
},{"./Decorators":253,"./FailedPredicateException":257,"./InputMismatchException":258,"./NoViableAltException":265,"./Token":278,"./atn/ATNState":292,"./atn/ATNStateType":293,"./atn/PredictionContext":333,"./misc/IntervalSet":366}],255:[function(require,module,exports){
|
|
44035
44306
|
"use strict";
|
|
44036
44307
|
/*!
|
|
44037
44308
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44107,7 +44378,7 @@ var Dependents;
|
|
|
44107
44378
|
Dependents[Dependents["FOLLOWING"] = 9] = "FOLLOWING";
|
|
44108
44379
|
})(Dependents = exports.Dependents || (exports.Dependents = {}));
|
|
44109
44380
|
|
|
44110
|
-
},{}],
|
|
44381
|
+
},{}],256:[function(require,module,exports){
|
|
44111
44382
|
"use strict";
|
|
44112
44383
|
/*!
|
|
44113
44384
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44255,7 +44526,7 @@ __decorate([
|
|
|
44255
44526
|
], DiagnosticErrorListener.prototype, "getConflictingAlts", null);
|
|
44256
44527
|
exports.DiagnosticErrorListener = DiagnosticErrorListener;
|
|
44257
44528
|
|
|
44258
|
-
},{"./Decorators":
|
|
44529
|
+
},{"./Decorators":253,"./misc/BitSet":360,"./misc/Interval":365}],257:[function(require,module,exports){
|
|
44259
44530
|
"use strict";
|
|
44260
44531
|
/*!
|
|
44261
44532
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44320,7 +44591,7 @@ FailedPredicateException = __decorate([
|
|
|
44320
44591
|
], FailedPredicateException);
|
|
44321
44592
|
exports.FailedPredicateException = FailedPredicateException;
|
|
44322
44593
|
|
|
44323
|
-
},{"./Decorators":
|
|
44594
|
+
},{"./Decorators":253,"./RecognitionException":272,"./atn/PredicateTransition":332}],258:[function(require,module,exports){
|
|
44324
44595
|
"use strict";
|
|
44325
44596
|
/*!
|
|
44326
44597
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44360,7 +44631,7 @@ InputMismatchException = __decorate([
|
|
|
44360
44631
|
], InputMismatchException);
|
|
44361
44632
|
exports.InputMismatchException = InputMismatchException;
|
|
44362
44633
|
|
|
44363
|
-
},{"./Decorators":
|
|
44634
|
+
},{"./Decorators":253,"./RecognitionException":272}],259:[function(require,module,exports){
|
|
44364
44635
|
"use strict";
|
|
44365
44636
|
/*!
|
|
44366
44637
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44383,7 +44654,7 @@ var IntStream;
|
|
|
44383
44654
|
IntStream.UNKNOWN_SOURCE_NAME = "<unknown>";
|
|
44384
44655
|
})(IntStream = exports.IntStream || (exports.IntStream = {}));
|
|
44385
44656
|
|
|
44386
|
-
},{}],
|
|
44657
|
+
},{}],260:[function(require,module,exports){
|
|
44387
44658
|
"use strict";
|
|
44388
44659
|
/*!
|
|
44389
44660
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44430,7 +44701,7 @@ __decorate([
|
|
|
44430
44701
|
], InterpreterRuleContext.prototype, "ruleIndex", null);
|
|
44431
44702
|
exports.InterpreterRuleContext = InterpreterRuleContext;
|
|
44432
44703
|
|
|
44433
|
-
},{"./Decorators":
|
|
44704
|
+
},{"./Decorators":253,"./ParserRuleContext":269}],261:[function(require,module,exports){
|
|
44434
44705
|
"use strict";
|
|
44435
44706
|
/*!
|
|
44436
44707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44766,7 +45037,7 @@ __decorate([
|
|
|
44766
45037
|
], Lexer.prototype, "charPositionInLine", null);
|
|
44767
45038
|
exports.Lexer = Lexer;
|
|
44768
45039
|
|
|
44769
|
-
},{"./CommonTokenFactory":
|
|
45040
|
+
},{"./CommonTokenFactory":250,"./Decorators":253,"./IntStream":259,"./LexerNoViableAltException":263,"./Recognizer":273,"./Token":278,"./atn/LexerATNSimulator":311,"./misc/IntegerStack":364,"./misc/Interval":365}],262:[function(require,module,exports){
|
|
44770
45041
|
"use strict";
|
|
44771
45042
|
/*!
|
|
44772
45043
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44846,7 +45117,7 @@ LexerInterpreter = __decorate([
|
|
|
44846
45117
|
], LexerInterpreter);
|
|
44847
45118
|
exports.LexerInterpreter = LexerInterpreter;
|
|
44848
45119
|
|
|
44849
|
-
},{"./Decorators":
|
|
45120
|
+
},{"./Decorators":253,"./Lexer":261,"./atn/LexerATNSimulator":311}],263:[function(require,module,exports){
|
|
44850
45121
|
"use strict";
|
|
44851
45122
|
/*!
|
|
44852
45123
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -44903,7 +45174,7 @@ LexerNoViableAltException = __decorate([
|
|
|
44903
45174
|
], LexerNoViableAltException);
|
|
44904
45175
|
exports.LexerNoViableAltException = LexerNoViableAltException;
|
|
44905
45176
|
|
|
44906
|
-
},{"./Decorators":
|
|
45177
|
+
},{"./Decorators":253,"./RecognitionException":272,"./misc/Interval":365,"./misc/Utils":372}],264:[function(require,module,exports){
|
|
44907
45178
|
"use strict";
|
|
44908
45179
|
/*!
|
|
44909
45180
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45113,7 +45384,7 @@ ListTokenSource = __decorate([
|
|
|
45113
45384
|
], ListTokenSource);
|
|
45114
45385
|
exports.ListTokenSource = ListTokenSource;
|
|
45115
45386
|
|
|
45116
|
-
},{"./CommonTokenFactory":
|
|
45387
|
+
},{"./CommonTokenFactory":250,"./Decorators":253,"./Token":278}],265:[function(require,module,exports){
|
|
45117
45388
|
"use strict";
|
|
45118
45389
|
/*!
|
|
45119
45390
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -45168,7 +45439,7 @@ __decorate([
|
|
|
45168
45439
|
], NoViableAltException.prototype, "_startToken", void 0);
|
|
45169
45440
|
exports.NoViableAltException = NoViableAltException;
|
|
45170
45441
|
|
|
45171
|
-
},{"./Decorators":
|
|
45442
|
+
},{"./Decorators":253,"./Parser":266,"./RecognitionException":272}],266:[function(require,module,exports){
|
|
45172
45443
|
(function (process){(function (){
|
|
45173
45444
|
"use strict";
|
|
45174
45445
|
/*!
|
|
@@ -46014,7 +46285,7 @@ __decorate([
|
|
|
46014
46285
|
exports.Parser = Parser;
|
|
46015
46286
|
|
|
46016
46287
|
}).call(this)}).call(this,require('_process'))
|
|
46017
|
-
},{"./Decorators":
|
|
46288
|
+
},{"./Decorators":253,"./DefaultErrorStrategy":254,"./Lexer":261,"./ProxyParserErrorListener":271,"./Recognizer":273,"./Token":278,"./atn/ATNDeserializationOptions":289,"./atn/ATNDeserializer":290,"./atn/ParseInfo":326,"./atn/ParserATNSimulator":327,"./atn/ProfilingATNSimulator":336,"./misc/IntegerStack":364,"./misc/Utils":372,"./tree/ErrorNode":373,"./tree/TerminalNode":376,"./tree/pattern/ParseTreePatternMatcher":381,"_process":455}],267:[function(require,module,exports){
|
|
46018
46289
|
"use strict";
|
|
46019
46290
|
/*!
|
|
46020
46291
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46022,7 +46293,7 @@ exports.Parser = Parser;
|
|
|
46022
46293
|
*/
|
|
46023
46294
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46024
46295
|
|
|
46025
|
-
},{}],
|
|
46296
|
+
},{}],268:[function(require,module,exports){
|
|
46026
46297
|
"use strict";
|
|
46027
46298
|
/*!
|
|
46028
46299
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46430,7 +46701,7 @@ ParserInterpreter = __decorate([
|
|
|
46430
46701
|
], ParserInterpreter);
|
|
46431
46702
|
exports.ParserInterpreter = ParserInterpreter;
|
|
46432
46703
|
|
|
46433
|
-
},{"./Decorators":
|
|
46704
|
+
},{"./Decorators":253,"./FailedPredicateException":257,"./InputMismatchException":258,"./InterpreterRuleContext":260,"./Parser":266,"./RecognitionException":272,"./Token":278,"./atn/ATNState":292,"./atn/ATNStateType":293,"./atn/LoopEndState":323,"./atn/ParserATNSimulator":327,"./atn/StarLoopEntryState":345,"./misc/BitSet":360}],269:[function(require,module,exports){
|
|
46434
46705
|
"use strict";
|
|
46435
46706
|
/*!
|
|
46436
46707
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46731,7 +47002,7 @@ __decorate([
|
|
|
46731
47002
|
], ParserRuleContext.prototype, "sourceInterval", null);
|
|
46732
47003
|
exports.ParserRuleContext = ParserRuleContext;
|
|
46733
47004
|
|
|
46734
|
-
},{"./Decorators":
|
|
47005
|
+
},{"./Decorators":253,"./RuleContext":274,"./misc/Interval":365,"./tree/ErrorNode":373,"./tree/TerminalNode":376}],270:[function(require,module,exports){
|
|
46735
47006
|
"use strict";
|
|
46736
47007
|
/*!
|
|
46737
47008
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46781,7 +47052,7 @@ __decorate([
|
|
|
46781
47052
|
], ProxyErrorListener.prototype, "syntaxError", null);
|
|
46782
47053
|
exports.ProxyErrorListener = ProxyErrorListener;
|
|
46783
47054
|
|
|
46784
|
-
},{"./Decorators":
|
|
47055
|
+
},{"./Decorators":253}],271:[function(require,module,exports){
|
|
46785
47056
|
"use strict";
|
|
46786
47057
|
/*!
|
|
46787
47058
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46840,7 +47111,7 @@ __decorate([
|
|
|
46840
47111
|
], ProxyParserErrorListener.prototype, "reportContextSensitivity", null);
|
|
46841
47112
|
exports.ProxyParserErrorListener = ProxyParserErrorListener;
|
|
46842
47113
|
|
|
46843
|
-
},{"./Decorators":
|
|
47114
|
+
},{"./Decorators":253,"./ProxyErrorListener":270}],272:[function(require,module,exports){
|
|
46844
47115
|
"use strict";
|
|
46845
47116
|
/*!
|
|
46846
47117
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -46945,7 +47216,7 @@ class RecognitionException extends Error {
|
|
|
46945
47216
|
}
|
|
46946
47217
|
exports.RecognitionException = RecognitionException;
|
|
46947
47218
|
|
|
46948
|
-
},{}],
|
|
47219
|
+
},{}],273:[function(require,module,exports){
|
|
46949
47220
|
"use strict";
|
|
46950
47221
|
/*!
|
|
46951
47222
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47164,7 +47435,7 @@ __decorate([
|
|
|
47164
47435
|
], Recognizer.prototype, "getErrorListeners", null);
|
|
47165
47436
|
exports.Recognizer = Recognizer;
|
|
47166
47437
|
|
|
47167
|
-
},{"./ConsoleErrorListener":
|
|
47438
|
+
},{"./ConsoleErrorListener":252,"./Decorators":253,"./ProxyErrorListener":270,"./Token":278,"./misc/Utils":372}],274:[function(require,module,exports){
|
|
47168
47439
|
"use strict";
|
|
47169
47440
|
/*!
|
|
47170
47441
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47381,7 +47652,7 @@ __decorate([
|
|
|
47381
47652
|
], RuleContext.prototype, "toStringTree", null);
|
|
47382
47653
|
exports.RuleContext = RuleContext;
|
|
47383
47654
|
|
|
47384
|
-
},{"./Decorators":
|
|
47655
|
+
},{"./Decorators":253,"./ParserRuleContext":269,"./Recognizer":273,"./atn/ATN":286,"./misc/Interval":365,"./tree/RuleNode":375,"./tree/Trees":377}],275:[function(require,module,exports){
|
|
47385
47656
|
"use strict";
|
|
47386
47657
|
/*!
|
|
47387
47658
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47432,7 +47703,7 @@ __decorate([
|
|
|
47432
47703
|
], RuleContextWithAltNum.prototype, "altNumber", null);
|
|
47433
47704
|
exports.RuleContextWithAltNum = RuleContextWithAltNum;
|
|
47434
47705
|
|
|
47435
|
-
},{"./Decorators":
|
|
47706
|
+
},{"./Decorators":253,"./ParserRuleContext":269,"./atn/ATN":286}],276:[function(require,module,exports){
|
|
47436
47707
|
"use strict";
|
|
47437
47708
|
/*!
|
|
47438
47709
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47455,7 +47726,7 @@ function RuleDependency(dependency) {
|
|
|
47455
47726
|
}
|
|
47456
47727
|
exports.RuleDependency = RuleDependency;
|
|
47457
47728
|
|
|
47458
|
-
},{}],
|
|
47729
|
+
},{}],277:[function(require,module,exports){
|
|
47459
47730
|
"use strict";
|
|
47460
47731
|
/*!
|
|
47461
47732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47474,7 +47745,7 @@ function RuleVersion(version) {
|
|
|
47474
47745
|
}
|
|
47475
47746
|
exports.RuleVersion = RuleVersion;
|
|
47476
47747
|
|
|
47477
|
-
},{}],
|
|
47748
|
+
},{}],278:[function(require,module,exports){
|
|
47478
47749
|
"use strict";
|
|
47479
47750
|
/*!
|
|
47480
47751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47514,7 +47785,7 @@ var Token;
|
|
|
47514
47785
|
Token.MIN_USER_CHANNEL_VALUE = 2;
|
|
47515
47786
|
})(Token = exports.Token || (exports.Token = {}));
|
|
47516
47787
|
|
|
47517
|
-
},{"./IntStream":
|
|
47788
|
+
},{"./IntStream":259}],279:[function(require,module,exports){
|
|
47518
47789
|
"use strict";
|
|
47519
47790
|
/*!
|
|
47520
47791
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47522,7 +47793,7 @@ var Token;
|
|
|
47522
47793
|
*/
|
|
47523
47794
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47524
47795
|
|
|
47525
|
-
},{}],
|
|
47796
|
+
},{}],280:[function(require,module,exports){
|
|
47526
47797
|
"use strict";
|
|
47527
47798
|
/*!
|
|
47528
47799
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47530,7 +47801,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
47530
47801
|
*/
|
|
47531
47802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47532
47803
|
|
|
47533
|
-
},{}],
|
|
47804
|
+
},{}],281:[function(require,module,exports){
|
|
47534
47805
|
"use strict";
|
|
47535
47806
|
/*!
|
|
47536
47807
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -47538,7 +47809,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
47538
47809
|
*/
|
|
47539
47810
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47540
47811
|
|
|
47541
|
-
},{}],
|
|
47812
|
+
},{}],282:[function(require,module,exports){
|
|
47542
47813
|
"use strict";
|
|
47543
47814
|
/*!
|
|
47544
47815
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48046,7 +48317,7 @@ __decorate([
|
|
|
48046
48317
|
Decorators_1.Override
|
|
48047
48318
|
], ReplaceOp.prototype, "toString", null);
|
|
48048
48319
|
|
|
48049
|
-
},{"./Decorators":
|
|
48320
|
+
},{"./Decorators":253,"./Token":278,"./misc/Interval":365}],283:[function(require,module,exports){
|
|
48050
48321
|
"use strict";
|
|
48051
48322
|
/*!
|
|
48052
48323
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48054,7 +48325,7 @@ __decorate([
|
|
|
48054
48325
|
*/
|
|
48055
48326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48056
48327
|
|
|
48057
|
-
},{}],
|
|
48328
|
+
},{}],284:[function(require,module,exports){
|
|
48058
48329
|
"use strict";
|
|
48059
48330
|
/*!
|
|
48060
48331
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48174,7 +48445,7 @@ __decorate([
|
|
|
48174
48445
|
], VocabularyImpl, "EMPTY_VOCABULARY", void 0);
|
|
48175
48446
|
exports.VocabularyImpl = VocabularyImpl;
|
|
48176
48447
|
|
|
48177
|
-
},{"./Decorators":
|
|
48448
|
+
},{"./Decorators":253,"./Token":278}],285:[function(require,module,exports){
|
|
48178
48449
|
"use strict";
|
|
48179
48450
|
/*!
|
|
48180
48451
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48182,7 +48453,7 @@ exports.VocabularyImpl = VocabularyImpl;
|
|
|
48182
48453
|
*/
|
|
48183
48454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48184
48455
|
|
|
48185
|
-
},{}],
|
|
48456
|
+
},{}],286:[function(require,module,exports){
|
|
48186
48457
|
"use strict";
|
|
48187
48458
|
/*!
|
|
48188
48459
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48404,7 +48675,7 @@ exports.ATN = ATN;
|
|
|
48404
48675
|
})(ATN = exports.ATN || (exports.ATN = {}));
|
|
48405
48676
|
exports.ATN = ATN;
|
|
48406
48677
|
|
|
48407
|
-
},{"../Decorators":
|
|
48678
|
+
},{"../Decorators":253,"../Token":278,"../dfa/DFA":351,"../misc/Array2DHashMap":356,"../misc/IntervalSet":366,"../misc/ObjectEqualityComparator":369,"./InvalidState":309,"./LL1Analyzer":310,"./PredictionContext":333,"assert":396}],287:[function(require,module,exports){
|
|
48408
48679
|
"use strict";
|
|
48409
48680
|
/*!
|
|
48410
48681
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -48929,7 +49200,7 @@ ActionSemanticContextATNConfig = __decorate([
|
|
|
48929
49200
|
__param(1, Decorators_1.NotNull), __param(2, Decorators_1.NotNull)
|
|
48930
49201
|
], ActionSemanticContextATNConfig);
|
|
48931
49202
|
|
|
48932
|
-
},{"../Decorators":
|
|
49203
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/MurmurHash":368,"../misc/ObjectEqualityComparator":369,"./DecisionState":306,"./PredictionContext":333,"./SemanticContext":341,"assert":396}],288:[function(require,module,exports){
|
|
48933
49204
|
"use strict";
|
|
48934
49205
|
/*!
|
|
48935
49206
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49376,7 +49647,7 @@ __decorate([
|
|
|
49376
49647
|
], ATNConfigSet.prototype, "hashCode", null);
|
|
49377
49648
|
exports.ATNConfigSet = ATNConfigSet;
|
|
49378
49649
|
|
|
49379
|
-
},{"../Decorators":
|
|
49650
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/Array2DHashSet":357,"../misc/ArrayEqualityComparator":358,"../misc/BitSet":360,"../misc/ObjectEqualityComparator":369,"../misc/Utils":372,"./ATN":286,"./ATNConfig":287,"./PredictionContext":333,"./PredictionContextCache":334,"./SemanticContext":341,"assert":396}],289:[function(require,module,exports){
|
|
49380
49651
|
"use strict";
|
|
49381
49652
|
/*!
|
|
49382
49653
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -49455,7 +49726,7 @@ __decorate([
|
|
|
49455
49726
|
], ATNDeserializationOptions, "defaultOptions", null);
|
|
49456
49727
|
exports.ATNDeserializationOptions = ATNDeserializationOptions;
|
|
49457
49728
|
|
|
49458
|
-
},{"../Decorators":
|
|
49729
|
+
},{"../Decorators":253}],290:[function(require,module,exports){
|
|
49459
49730
|
"use strict";
|
|
49460
49731
|
/*!
|
|
49461
49732
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50542,7 +50813,7 @@ __decorate([
|
|
|
50542
50813
|
], ATNDeserializer.prototype, "edgeFactory", null);
|
|
50543
50814
|
exports.ATNDeserializer = ATNDeserializer;
|
|
50544
50815
|
|
|
50545
|
-
},{"../Decorators":
|
|
50816
|
+
},{"../Decorators":253,"../Token":278,"../dfa/DFA":351,"../misc/Array2DHashSet":357,"../misc/BitSet":360,"../misc/IntervalSet":366,"../misc/UUID":371,"./ATN":286,"./ATNDeserializationOptions":289,"./ATNStateType":293,"./ActionTransition":295,"./AtomTransition":297,"./BasicBlockStartState":298,"./BasicState":299,"./BlockEndState":300,"./BlockStartState":301,"./DecisionState":306,"./EpsilonTransition":307,"./InvalidState":309,"./LexerChannelAction":313,"./LexerCustomAction":314,"./LexerModeAction":316,"./LexerMoreAction":317,"./LexerPopModeAction":318,"./LexerPushModeAction":319,"./LexerSkipAction":320,"./LexerTypeAction":321,"./LoopEndState":323,"./NotSetTransition":324,"./ParserATNSimulator":327,"./PlusBlockStartState":328,"./PlusLoopbackState":329,"./PrecedencePredicateTransition":330,"./PredicateTransition":332,"./RangeTransition":337,"./RuleStartState":338,"./RuleStopState":339,"./RuleTransition":340,"./SetTransition":342,"./StarBlockStartState":344,"./StarLoopEntryState":345,"./StarLoopbackState":346,"./TokensStartState":347,"./WildcardTransition":349}],291:[function(require,module,exports){
|
|
50546
50817
|
"use strict";
|
|
50547
50818
|
/*!
|
|
50548
50819
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50606,7 +50877,7 @@ exports.ATNSimulator = ATNSimulator;
|
|
|
50606
50877
|
})(ATNSimulator = exports.ATNSimulator || (exports.ATNSimulator = {}));
|
|
50607
50878
|
exports.ATNSimulator = ATNSimulator;
|
|
50608
50879
|
|
|
50609
|
-
},{"../Decorators":
|
|
50880
|
+
},{"../Decorators":253,"../dfa/DFAState":353,"./ATNConfigSet":288,"./PredictionContext":333}],292:[function(require,module,exports){
|
|
50610
50881
|
"use strict";
|
|
50611
50882
|
/*!
|
|
50612
50883
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50793,7 +51064,7 @@ exports.ATNState = ATNState;
|
|
|
50793
51064
|
ATNState.INVALID_STATE_NUMBER = -1;
|
|
50794
51065
|
})(ATNState = exports.ATNState || (exports.ATNState = {}));
|
|
50795
51066
|
|
|
50796
|
-
},{"../Decorators":
|
|
51067
|
+
},{"../Decorators":253}],293:[function(require,module,exports){
|
|
50797
51068
|
"use strict";
|
|
50798
51069
|
/*!
|
|
50799
51070
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50819,7 +51090,7 @@ var ATNStateType;
|
|
|
50819
51090
|
ATNStateType[ATNStateType["LOOP_END"] = 12] = "LOOP_END";
|
|
50820
51091
|
})(ATNStateType = exports.ATNStateType || (exports.ATNStateType = {}));
|
|
50821
51092
|
|
|
50822
|
-
},{}],
|
|
51093
|
+
},{}],294:[function(require,module,exports){
|
|
50823
51094
|
"use strict";
|
|
50824
51095
|
/*!
|
|
50825
51096
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50839,7 +51110,7 @@ class AbstractPredicateTransition extends Transition_1.Transition {
|
|
|
50839
51110
|
}
|
|
50840
51111
|
exports.AbstractPredicateTransition = AbstractPredicateTransition;
|
|
50841
51112
|
|
|
50842
|
-
},{"./Transition":
|
|
51113
|
+
},{"./Transition":348}],295:[function(require,module,exports){
|
|
50843
51114
|
"use strict";
|
|
50844
51115
|
/*!
|
|
50845
51116
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50895,7 +51166,7 @@ ActionTransition = __decorate([
|
|
|
50895
51166
|
], ActionTransition);
|
|
50896
51167
|
exports.ActionTransition = ActionTransition;
|
|
50897
51168
|
|
|
50898
|
-
},{"../Decorators":
|
|
51169
|
+
},{"../Decorators":253,"./Transition":348}],296:[function(require,module,exports){
|
|
50899
51170
|
"use strict";
|
|
50900
51171
|
/*!
|
|
50901
51172
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -50982,7 +51253,7 @@ AmbiguityInfo = __decorate([
|
|
|
50982
51253
|
], AmbiguityInfo);
|
|
50983
51254
|
exports.AmbiguityInfo = AmbiguityInfo;
|
|
50984
51255
|
|
|
50985
|
-
},{"../Decorators":
|
|
51256
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],297:[function(require,module,exports){
|
|
50986
51257
|
"use strict";
|
|
50987
51258
|
/*!
|
|
50988
51259
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51040,7 +51311,7 @@ AtomTransition = __decorate([
|
|
|
51040
51311
|
], AtomTransition);
|
|
51041
51312
|
exports.AtomTransition = AtomTransition;
|
|
51042
51313
|
|
|
51043
|
-
},{"../Decorators":
|
|
51314
|
+
},{"../Decorators":253,"../misc/IntervalSet":366,"./Transition":348}],298:[function(require,module,exports){
|
|
51044
51315
|
"use strict";
|
|
51045
51316
|
/*!
|
|
51046
51317
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51072,7 +51343,7 @@ __decorate([
|
|
|
51072
51343
|
], BasicBlockStartState.prototype, "stateType", null);
|
|
51073
51344
|
exports.BasicBlockStartState = BasicBlockStartState;
|
|
51074
51345
|
|
|
51075
|
-
},{"../Decorators":
|
|
51346
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BlockStartState":301}],299:[function(require,module,exports){
|
|
51076
51347
|
"use strict";
|
|
51077
51348
|
/*!
|
|
51078
51349
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51104,7 +51375,7 @@ __decorate([
|
|
|
51104
51375
|
], BasicState.prototype, "stateType", null);
|
|
51105
51376
|
exports.BasicState = BasicState;
|
|
51106
51377
|
|
|
51107
|
-
},{"../Decorators":
|
|
51378
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],300:[function(require,module,exports){
|
|
51108
51379
|
"use strict";
|
|
51109
51380
|
/*!
|
|
51110
51381
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51133,7 +51404,7 @@ __decorate([
|
|
|
51133
51404
|
], BlockEndState.prototype, "stateType", null);
|
|
51134
51405
|
exports.BlockEndState = BlockEndState;
|
|
51135
51406
|
|
|
51136
|
-
},{"../Decorators":
|
|
51407
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],301:[function(require,module,exports){
|
|
51137
51408
|
"use strict";
|
|
51138
51409
|
/*!
|
|
51139
51410
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51147,7 +51418,7 @@ class BlockStartState extends DecisionState_1.DecisionState {
|
|
|
51147
51418
|
}
|
|
51148
51419
|
exports.BlockStartState = BlockStartState;
|
|
51149
51420
|
|
|
51150
|
-
},{"./DecisionState":
|
|
51421
|
+
},{"./DecisionState":306}],302:[function(require,module,exports){
|
|
51151
51422
|
"use strict";
|
|
51152
51423
|
/*!
|
|
51153
51424
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51217,7 +51488,7 @@ __decorate([
|
|
|
51217
51488
|
], ConflictInfo.prototype, "hashCode", null);
|
|
51218
51489
|
exports.ConflictInfo = ConflictInfo;
|
|
51219
51490
|
|
|
51220
|
-
},{"../Decorators":
|
|
51491
|
+
},{"../Decorators":253,"../misc/Utils":372}],303:[function(require,module,exports){
|
|
51221
51492
|
"use strict";
|
|
51222
51493
|
/*!
|
|
51223
51494
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51277,7 +51548,7 @@ ContextSensitivityInfo = __decorate([
|
|
|
51277
51548
|
], ContextSensitivityInfo);
|
|
51278
51549
|
exports.ContextSensitivityInfo = ContextSensitivityInfo;
|
|
51279
51550
|
|
|
51280
|
-
},{"../Decorators":
|
|
51551
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],304:[function(require,module,exports){
|
|
51281
51552
|
"use strict";
|
|
51282
51553
|
/*!
|
|
51283
51554
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51329,7 +51600,7 @@ DecisionEventInfo = __decorate([
|
|
|
51329
51600
|
], DecisionEventInfo);
|
|
51330
51601
|
exports.DecisionEventInfo = DecisionEventInfo;
|
|
51331
51602
|
|
|
51332
|
-
},{"../Decorators":
|
|
51603
|
+
},{"../Decorators":253}],305:[function(require,module,exports){
|
|
51333
51604
|
"use strict";
|
|
51334
51605
|
/*!
|
|
51335
51606
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51542,7 +51813,7 @@ __decorate([
|
|
|
51542
51813
|
], DecisionInfo.prototype, "toString", null);
|
|
51543
51814
|
exports.DecisionInfo = DecisionInfo;
|
|
51544
51815
|
|
|
51545
|
-
},{"../Decorators":
|
|
51816
|
+
},{"../Decorators":253}],306:[function(require,module,exports){
|
|
51546
51817
|
"use strict";
|
|
51547
51818
|
/*!
|
|
51548
51819
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51562,7 +51833,7 @@ class DecisionState extends ATNState_1.ATNState {
|
|
|
51562
51833
|
}
|
|
51563
51834
|
exports.DecisionState = DecisionState;
|
|
51564
51835
|
|
|
51565
|
-
},{"./ATNState":
|
|
51836
|
+
},{"./ATNState":292}],307:[function(require,module,exports){
|
|
51566
51837
|
"use strict";
|
|
51567
51838
|
/*!
|
|
51568
51839
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51628,7 +51899,7 @@ EpsilonTransition = __decorate([
|
|
|
51628
51899
|
], EpsilonTransition);
|
|
51629
51900
|
exports.EpsilonTransition = EpsilonTransition;
|
|
51630
51901
|
|
|
51631
|
-
},{"../Decorators":
|
|
51902
|
+
},{"../Decorators":253,"./Transition":348}],308:[function(require,module,exports){
|
|
51632
51903
|
"use strict";
|
|
51633
51904
|
/*!
|
|
51634
51905
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51681,7 +51952,7 @@ ErrorInfo = __decorate([
|
|
|
51681
51952
|
], ErrorInfo);
|
|
51682
51953
|
exports.ErrorInfo = ErrorInfo;
|
|
51683
51954
|
|
|
51684
|
-
},{"../Decorators":
|
|
51955
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],309:[function(require,module,exports){
|
|
51685
51956
|
"use strict";
|
|
51686
51957
|
/*!
|
|
51687
51958
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51712,7 +51983,7 @@ __decorate([
|
|
|
51712
51983
|
], InvalidState.prototype, "stateType", null);
|
|
51713
51984
|
exports.InvalidState = InvalidState;
|
|
51714
51985
|
|
|
51715
|
-
},{"../Decorators":
|
|
51986
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BasicState":299}],310:[function(require,module,exports){
|
|
51716
51987
|
"use strict";
|
|
51717
51988
|
/*!
|
|
51718
51989
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -51934,7 +52205,7 @@ LL1Analyzer = __decorate([
|
|
|
51934
52205
|
], LL1Analyzer);
|
|
51935
52206
|
exports.LL1Analyzer = LL1Analyzer;
|
|
51936
52207
|
|
|
51937
|
-
},{"../Decorators":
|
|
52208
|
+
},{"../Decorators":253,"../Token":278,"../misc/Array2DHashSet":357,"../misc/BitSet":360,"../misc/IntervalSet":366,"../misc/ObjectEqualityComparator":369,"./ATNConfig":287,"./AbstractPredicateTransition":294,"./NotSetTransition":324,"./PredictionContext":333,"./RuleStopState":339,"./RuleTransition":340,"./WildcardTransition":349}],311:[function(require,module,exports){
|
|
51938
52209
|
"use strict";
|
|
51939
52210
|
/*!
|
|
51940
52211
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52651,7 +52922,7 @@ exports.LexerATNSimulator = LexerATNSimulator;
|
|
|
52651
52922
|
})(LexerATNSimulator = exports.LexerATNSimulator || (exports.LexerATNSimulator = {}));
|
|
52652
52923
|
exports.LexerATNSimulator = LexerATNSimulator;
|
|
52653
52924
|
|
|
52654
|
-
},{"../Decorators":
|
|
52925
|
+
},{"../Decorators":253,"../IntStream":259,"../Lexer":261,"../LexerNoViableAltException":263,"../Token":278,"../dfa/AcceptStateInfo":350,"../dfa/DFAState":353,"../misc/Interval":365,"./ATN":286,"./ATNConfig":287,"./ATNConfigSet":288,"./ATNSimulator":291,"./LexerActionExecutor":312,"./OrderedATNConfigSet":325,"./PredictionContext":333,"./RuleStopState":339,"assert":396}],312:[function(require,module,exports){
|
|
52655
52926
|
"use strict";
|
|
52656
52927
|
/*!
|
|
52657
52928
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52852,7 +53123,7 @@ LexerActionExecutor = __decorate([
|
|
|
52852
53123
|
], LexerActionExecutor);
|
|
52853
53124
|
exports.LexerActionExecutor = LexerActionExecutor;
|
|
52854
53125
|
|
|
52855
|
-
},{"../Decorators":
|
|
53126
|
+
},{"../Decorators":253,"../misc/ArrayEqualityComparator":358,"../misc/MurmurHash":368,"./LexerIndexedCustomAction":315}],313:[function(require,module,exports){
|
|
52856
53127
|
"use strict";
|
|
52857
53128
|
/*!
|
|
52858
53129
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -52957,7 +53228,7 @@ __decorate([
|
|
|
52957
53228
|
], LexerChannelAction.prototype, "toString", null);
|
|
52958
53229
|
exports.LexerChannelAction = LexerChannelAction;
|
|
52959
53230
|
|
|
52960
|
-
},{"../Decorators":
|
|
53231
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],314:[function(require,module,exports){
|
|
52961
53232
|
"use strict";
|
|
52962
53233
|
/*!
|
|
52963
53234
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53086,7 +53357,7 @@ __decorate([
|
|
|
53086
53357
|
], LexerCustomAction.prototype, "equals", null);
|
|
53087
53358
|
exports.LexerCustomAction = LexerCustomAction;
|
|
53088
53359
|
|
|
53089
|
-
},{"../Decorators":
|
|
53360
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],315:[function(require,module,exports){
|
|
53090
53361
|
"use strict";
|
|
53091
53362
|
/*!
|
|
53092
53363
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53221,7 +53492,7 @@ LexerIndexedCustomAction = __decorate([
|
|
|
53221
53492
|
], LexerIndexedCustomAction);
|
|
53222
53493
|
exports.LexerIndexedCustomAction = LexerIndexedCustomAction;
|
|
53223
53494
|
|
|
53224
|
-
},{"../Decorators":
|
|
53495
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],316:[function(require,module,exports){
|
|
53225
53496
|
"use strict";
|
|
53226
53497
|
/*!
|
|
53227
53498
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53326,7 +53597,7 @@ __decorate([
|
|
|
53326
53597
|
], LexerModeAction.prototype, "toString", null);
|
|
53327
53598
|
exports.LexerModeAction = LexerModeAction;
|
|
53328
53599
|
|
|
53329
|
-
},{"../Decorators":
|
|
53600
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],317:[function(require,module,exports){
|
|
53330
53601
|
"use strict";
|
|
53331
53602
|
/*!
|
|
53332
53603
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53422,7 +53693,7 @@ exports.LexerMoreAction = LexerMoreAction;
|
|
|
53422
53693
|
LexerMoreAction.INSTANCE = new LexerMoreAction();
|
|
53423
53694
|
})(LexerMoreAction = exports.LexerMoreAction || (exports.LexerMoreAction = {}));
|
|
53424
53695
|
|
|
53425
|
-
},{"../Decorators":
|
|
53696
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],318:[function(require,module,exports){
|
|
53426
53697
|
"use strict";
|
|
53427
53698
|
/*!
|
|
53428
53699
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53518,7 +53789,7 @@ exports.LexerPopModeAction = LexerPopModeAction;
|
|
|
53518
53789
|
LexerPopModeAction.INSTANCE = new LexerPopModeAction();
|
|
53519
53790
|
})(LexerPopModeAction = exports.LexerPopModeAction || (exports.LexerPopModeAction = {}));
|
|
53520
53791
|
|
|
53521
|
-
},{"../Decorators":
|
|
53792
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],319:[function(require,module,exports){
|
|
53522
53793
|
"use strict";
|
|
53523
53794
|
/*!
|
|
53524
53795
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53623,7 +53894,7 @@ __decorate([
|
|
|
53623
53894
|
], LexerPushModeAction.prototype, "toString", null);
|
|
53624
53895
|
exports.LexerPushModeAction = LexerPushModeAction;
|
|
53625
53896
|
|
|
53626
|
-
},{"../Decorators":
|
|
53897
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],320:[function(require,module,exports){
|
|
53627
53898
|
"use strict";
|
|
53628
53899
|
/*!
|
|
53629
53900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53719,7 +53990,7 @@ exports.LexerSkipAction = LexerSkipAction;
|
|
|
53719
53990
|
LexerSkipAction.INSTANCE = new LexerSkipAction();
|
|
53720
53991
|
})(LexerSkipAction = exports.LexerSkipAction || (exports.LexerSkipAction = {}));
|
|
53721
53992
|
|
|
53722
|
-
},{"../Decorators":
|
|
53993
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],321:[function(require,module,exports){
|
|
53723
53994
|
"use strict";
|
|
53724
53995
|
/*!
|
|
53725
53996
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53823,7 +54094,7 @@ __decorate([
|
|
|
53823
54094
|
], LexerTypeAction.prototype, "toString", null);
|
|
53824
54095
|
exports.LexerTypeAction = LexerTypeAction;
|
|
53825
54096
|
|
|
53826
|
-
},{"../Decorators":
|
|
54097
|
+
},{"../Decorators":253,"../misc/MurmurHash":368}],322:[function(require,module,exports){
|
|
53827
54098
|
"use strict";
|
|
53828
54099
|
/*!
|
|
53829
54100
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53875,7 +54146,7 @@ LookaheadEventInfo = __decorate([
|
|
|
53875
54146
|
], LookaheadEventInfo);
|
|
53876
54147
|
exports.LookaheadEventInfo = LookaheadEventInfo;
|
|
53877
54148
|
|
|
53878
|
-
},{"../Decorators":
|
|
54149
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],323:[function(require,module,exports){
|
|
53879
54150
|
"use strict";
|
|
53880
54151
|
/*!
|
|
53881
54152
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53904,7 +54175,7 @@ __decorate([
|
|
|
53904
54175
|
], LoopEndState.prototype, "stateType", null);
|
|
53905
54176
|
exports.LoopEndState = LoopEndState;
|
|
53906
54177
|
|
|
53907
|
-
},{"../Decorators":
|
|
54178
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],324:[function(require,module,exports){
|
|
53908
54179
|
"use strict";
|
|
53909
54180
|
/*!
|
|
53910
54181
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -53953,7 +54224,7 @@ NotSetTransition = __decorate([
|
|
|
53953
54224
|
], NotSetTransition);
|
|
53954
54225
|
exports.NotSetTransition = NotSetTransition;
|
|
53955
54226
|
|
|
53956
|
-
},{"../Decorators":
|
|
54227
|
+
},{"../Decorators":253,"./SetTransition":342}],325:[function(require,module,exports){
|
|
53957
54228
|
"use strict";
|
|
53958
54229
|
/*!
|
|
53959
54230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54008,7 +54279,7 @@ __decorate([
|
|
|
54008
54279
|
], OrderedATNConfigSet.prototype, "canMerge", null);
|
|
54009
54280
|
exports.OrderedATNConfigSet = OrderedATNConfigSet;
|
|
54010
54281
|
|
|
54011
|
-
},{"../Decorators":
|
|
54282
|
+
},{"../Decorators":253,"./ATNConfigSet":288}],326:[function(require,module,exports){
|
|
54012
54283
|
"use strict";
|
|
54013
54284
|
/*!
|
|
54014
54285
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -54170,7 +54441,7 @@ ParseInfo = __decorate([
|
|
|
54170
54441
|
], ParseInfo);
|
|
54171
54442
|
exports.ParseInfo = ParseInfo;
|
|
54172
54443
|
|
|
54173
|
-
},{"../Decorators":
|
|
54444
|
+
},{"../Decorators":253}],327:[function(require,module,exports){
|
|
54174
54445
|
"use strict";
|
|
54175
54446
|
/*!
|
|
54176
54447
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56443,7 +56714,7 @@ ParserATNSimulator = __decorate([
|
|
|
56443
56714
|
], ParserATNSimulator);
|
|
56444
56715
|
exports.ParserATNSimulator = ParserATNSimulator;
|
|
56445
56716
|
|
|
56446
|
-
},{"../Decorators":
|
|
56717
|
+
},{"../Decorators":253,"../IntStream":259,"../NoViableAltException":265,"../ParserRuleContext":269,"../Token":278,"../VocabularyImpl":284,"../dfa/AcceptStateInfo":350,"../dfa/DFAState":353,"../misc/Array2DHashSet":357,"../misc/Arrays":359,"../misc/BitSet":360,"../misc/IntegerList":363,"../misc/Interval":365,"../misc/ObjectEqualityComparator":369,"./ATN":286,"./ATNConfig":287,"./ATNConfigSet":288,"./ATNSimulator":291,"./ATNStateType":293,"./ActionTransition":295,"./AtomTransition":297,"./ConflictInfo":302,"./DecisionState":306,"./NotSetTransition":324,"./PredictionContext":333,"./PredictionContextCache":334,"./PredictionMode":335,"./RuleStopState":339,"./RuleTransition":340,"./SemanticContext":341,"./SetTransition":342,"./SimulatorState":343,"assert":396}],328:[function(require,module,exports){
|
|
56447
56718
|
"use strict";
|
|
56448
56719
|
/*!
|
|
56449
56720
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56476,7 +56747,7 @@ __decorate([
|
|
|
56476
56747
|
], PlusBlockStartState.prototype, "stateType", null);
|
|
56477
56748
|
exports.PlusBlockStartState = PlusBlockStartState;
|
|
56478
56749
|
|
|
56479
|
-
},{"../Decorators":
|
|
56750
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BlockStartState":301}],329:[function(require,module,exports){
|
|
56480
56751
|
"use strict";
|
|
56481
56752
|
/*!
|
|
56482
56753
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56507,7 +56778,7 @@ __decorate([
|
|
|
56507
56778
|
], PlusLoopbackState.prototype, "stateType", null);
|
|
56508
56779
|
exports.PlusLoopbackState = PlusLoopbackState;
|
|
56509
56780
|
|
|
56510
|
-
},{"../Decorators":
|
|
56781
|
+
},{"../Decorators":253,"./ATNStateType":293,"./DecisionState":306}],330:[function(require,module,exports){
|
|
56511
56782
|
"use strict";
|
|
56512
56783
|
/*!
|
|
56513
56784
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56570,7 +56841,7 @@ PrecedencePredicateTransition = __decorate([
|
|
|
56570
56841
|
], PrecedencePredicateTransition);
|
|
56571
56842
|
exports.PrecedencePredicateTransition = PrecedencePredicateTransition;
|
|
56572
56843
|
|
|
56573
|
-
},{"../Decorators":
|
|
56844
|
+
},{"../Decorators":253,"./AbstractPredicateTransition":294,"./SemanticContext":341}],331:[function(require,module,exports){
|
|
56574
56845
|
"use strict";
|
|
56575
56846
|
/*!
|
|
56576
56847
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56633,7 +56904,7 @@ PredicateEvalInfo = __decorate([
|
|
|
56633
56904
|
], PredicateEvalInfo);
|
|
56634
56905
|
exports.PredicateEvalInfo = PredicateEvalInfo;
|
|
56635
56906
|
|
|
56636
|
-
},{"../Decorators":
|
|
56907
|
+
},{"../Decorators":253,"./DecisionEventInfo":304}],332:[function(require,module,exports){
|
|
56637
56908
|
"use strict";
|
|
56638
56909
|
/*!
|
|
56639
56910
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -56699,7 +56970,7 @@ PredicateTransition = __decorate([
|
|
|
56699
56970
|
], PredicateTransition);
|
|
56700
56971
|
exports.PredicateTransition = PredicateTransition;
|
|
56701
56972
|
|
|
56702
|
-
},{"../Decorators":
|
|
56973
|
+
},{"../Decorators":253,"./AbstractPredicateTransition":294,"./SemanticContext":341}],333:[function(require,module,exports){
|
|
56703
56974
|
"use strict";
|
|
56704
56975
|
/*!
|
|
56705
56976
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57390,7 +57661,7 @@ exports.SingletonPredictionContext = SingletonPredictionContext;
|
|
|
57390
57661
|
PredictionContext.IdentityEqualityComparator = IdentityEqualityComparator;
|
|
57391
57662
|
})(PredictionContext = exports.PredictionContext || (exports.PredictionContext = {}));
|
|
57392
57663
|
|
|
57393
|
-
},{"../Decorators":
|
|
57664
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/Array2DHashSet":357,"../misc/Arrays":359,"../misc/MurmurHash":368,"./PredictionContextCache":334,"assert":396}],334:[function(require,module,exports){
|
|
57394
57665
|
"use strict";
|
|
57395
57666
|
/*!
|
|
57396
57667
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57531,7 +57802,7 @@ PredictionContextCache.UNCACHED = new PredictionContextCache(false);
|
|
|
57531
57802
|
PredictionContextCache.IdentityCommutativePredictionContextOperands = IdentityCommutativePredictionContextOperands;
|
|
57532
57803
|
})(PredictionContextCache = exports.PredictionContextCache || (exports.PredictionContextCache = {}));
|
|
57533
57804
|
|
|
57534
|
-
},{"../Decorators":
|
|
57805
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/ObjectEqualityComparator":369,"./PredictionContext":333,"assert":396}],335:[function(require,module,exports){
|
|
57535
57806
|
"use strict";
|
|
57536
57807
|
/*!
|
|
57537
57808
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -57692,7 +57963,7 @@ var PredictionMode;
|
|
|
57692
57963
|
PredictionMode.allConfigsInRuleStopStates = allConfigsInRuleStopStates;
|
|
57693
57964
|
})(PredictionMode = exports.PredictionMode || (exports.PredictionMode = {}));
|
|
57694
57965
|
|
|
57695
|
-
},{"../Decorators":
|
|
57966
|
+
},{"../Decorators":253,"../misc/Array2DHashMap":356,"../misc/MurmurHash":368,"./RuleStopState":339}],336:[function(require,module,exports){
|
|
57696
57967
|
(function (process){(function (){
|
|
57697
57968
|
"use strict";
|
|
57698
57969
|
/*!
|
|
@@ -57961,7 +58232,7 @@ __decorate([
|
|
|
57961
58232
|
exports.ProfilingATNSimulator = ProfilingATNSimulator;
|
|
57962
58233
|
|
|
57963
58234
|
}).call(this)}).call(this,require('_process'))
|
|
57964
|
-
},{"../Decorators":
|
|
58235
|
+
},{"../Decorators":253,"./ATN":286,"./ATNSimulator":291,"./AmbiguityInfo":296,"./ContextSensitivityInfo":303,"./DecisionInfo":305,"./ErrorInfo":308,"./LookaheadEventInfo":322,"./ParserATNSimulator":327,"./PredicateEvalInfo":331,"./SemanticContext":341,"./SimulatorState":343,"_process":455}],337:[function(require,module,exports){
|
|
57965
58236
|
"use strict";
|
|
57966
58237
|
/*!
|
|
57967
58238
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58019,7 +58290,7 @@ RangeTransition = __decorate([
|
|
|
58019
58290
|
], RangeTransition);
|
|
58020
58291
|
exports.RangeTransition = RangeTransition;
|
|
58021
58292
|
|
|
58022
|
-
},{"../Decorators":
|
|
58293
|
+
},{"../Decorators":253,"../misc/IntervalSet":366,"./Transition":348}],338:[function(require,module,exports){
|
|
58023
58294
|
"use strict";
|
|
58024
58295
|
/*!
|
|
58025
58296
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58052,7 +58323,7 @@ __decorate([
|
|
|
58052
58323
|
], RuleStartState.prototype, "stateType", null);
|
|
58053
58324
|
exports.RuleStartState = RuleStartState;
|
|
58054
58325
|
|
|
58055
|
-
},{"../Decorators":
|
|
58326
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],339:[function(require,module,exports){
|
|
58056
58327
|
"use strict";
|
|
58057
58328
|
/*!
|
|
58058
58329
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58091,7 +58362,7 @@ __decorate([
|
|
|
58091
58362
|
], RuleStopState.prototype, "stateType", null);
|
|
58092
58363
|
exports.RuleStopState = RuleStopState;
|
|
58093
58364
|
|
|
58094
|
-
},{"../Decorators":
|
|
58365
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],340:[function(require,module,exports){
|
|
58095
58366
|
"use strict";
|
|
58096
58367
|
/*!
|
|
58097
58368
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58147,7 +58418,7 @@ RuleTransition = __decorate([
|
|
|
58147
58418
|
], RuleTransition);
|
|
58148
58419
|
exports.RuleTransition = RuleTransition;
|
|
58149
58420
|
|
|
58150
|
-
},{"../Decorators":
|
|
58421
|
+
},{"../Decorators":253,"./Transition":348}],341:[function(require,module,exports){
|
|
58151
58422
|
"use strict";
|
|
58152
58423
|
/*!
|
|
58153
58424
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58627,7 +58898,7 @@ exports.SemanticContext = SemanticContext;
|
|
|
58627
58898
|
SemanticContext.OR = OR;
|
|
58628
58899
|
})(SemanticContext = exports.SemanticContext || (exports.SemanticContext = {}));
|
|
58629
58900
|
|
|
58630
|
-
},{"../Decorators":
|
|
58901
|
+
},{"../Decorators":253,"../misc/Array2DHashSet":357,"../misc/ArrayEqualityComparator":358,"../misc/MurmurHash":368,"../misc/ObjectEqualityComparator":369,"../misc/Utils":372}],342:[function(require,module,exports){
|
|
58631
58902
|
"use strict";
|
|
58632
58903
|
/*!
|
|
58633
58904
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58693,7 +58964,7 @@ SetTransition = __decorate([
|
|
|
58693
58964
|
], SetTransition);
|
|
58694
58965
|
exports.SetTransition = SetTransition;
|
|
58695
58966
|
|
|
58696
|
-
},{"../Decorators":
|
|
58967
|
+
},{"../Decorators":253,"../Token":278,"../misc/IntervalSet":366,"./Transition":348}],343:[function(require,module,exports){
|
|
58697
58968
|
"use strict";
|
|
58698
58969
|
/*!
|
|
58699
58970
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58729,7 +59000,7 @@ SimulatorState = __decorate([
|
|
|
58729
59000
|
], SimulatorState);
|
|
58730
59001
|
exports.SimulatorState = SimulatorState;
|
|
58731
59002
|
|
|
58732
|
-
},{"../Decorators":
|
|
59003
|
+
},{"../Decorators":253,"../ParserRuleContext":269}],344:[function(require,module,exports){
|
|
58733
59004
|
"use strict";
|
|
58734
59005
|
/*!
|
|
58735
59006
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58757,7 +59028,7 @@ __decorate([
|
|
|
58757
59028
|
], StarBlockStartState.prototype, "stateType", null);
|
|
58758
59029
|
exports.StarBlockStartState = StarBlockStartState;
|
|
58759
59030
|
|
|
58760
|
-
},{"../Decorators":
|
|
59031
|
+
},{"../Decorators":253,"./ATNStateType":293,"./BlockStartState":301}],345:[function(require,module,exports){
|
|
58761
59032
|
"use strict";
|
|
58762
59033
|
/*!
|
|
58763
59034
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58814,7 +59085,7 @@ __decorate([
|
|
|
58814
59085
|
], StarLoopEntryState.prototype, "stateType", null);
|
|
58815
59086
|
exports.StarLoopEntryState = StarLoopEntryState;
|
|
58816
59087
|
|
|
58817
|
-
},{"../Decorators":
|
|
59088
|
+
},{"../Decorators":253,"../misc/BitSet":360,"./ATNStateType":293,"./DecisionState":306}],346:[function(require,module,exports){
|
|
58818
59089
|
"use strict";
|
|
58819
59090
|
/*!
|
|
58820
59091
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58845,7 +59116,7 @@ __decorate([
|
|
|
58845
59116
|
], StarLoopbackState.prototype, "stateType", null);
|
|
58846
59117
|
exports.StarLoopbackState = StarLoopbackState;
|
|
58847
59118
|
|
|
58848
|
-
},{"../Decorators":
|
|
59119
|
+
},{"../Decorators":253,"./ATNState":292,"./ATNStateType":293}],347:[function(require,module,exports){
|
|
58849
59120
|
"use strict";
|
|
58850
59121
|
/*!
|
|
58851
59122
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58874,7 +59145,7 @@ __decorate([
|
|
|
58874
59145
|
], TokensStartState.prototype, "stateType", null);
|
|
58875
59146
|
exports.TokensStartState = TokensStartState;
|
|
58876
59147
|
|
|
58877
|
-
},{"../Decorators":
|
|
59148
|
+
},{"../Decorators":253,"./ATNStateType":293,"./DecisionState":306}],348:[function(require,module,exports){
|
|
58878
59149
|
"use strict";
|
|
58879
59150
|
/*!
|
|
58880
59151
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58948,7 +59219,7 @@ Transition = __decorate([
|
|
|
58948
59219
|
], Transition);
|
|
58949
59220
|
exports.Transition = Transition;
|
|
58950
59221
|
|
|
58951
|
-
},{"../Decorators":
|
|
59222
|
+
},{"../Decorators":253}],349:[function(require,module,exports){
|
|
58952
59223
|
"use strict";
|
|
58953
59224
|
/*!
|
|
58954
59225
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -58996,7 +59267,7 @@ WildcardTransition = __decorate([
|
|
|
58996
59267
|
], WildcardTransition);
|
|
58997
59268
|
exports.WildcardTransition = WildcardTransition;
|
|
58998
59269
|
|
|
58999
|
-
},{"../Decorators":
|
|
59270
|
+
},{"../Decorators":253,"./Transition":348}],350:[function(require,module,exports){
|
|
59000
59271
|
"use strict";
|
|
59001
59272
|
/*!
|
|
59002
59273
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59038,7 +59309,7 @@ class AcceptStateInfo {
|
|
|
59038
59309
|
}
|
|
59039
59310
|
exports.AcceptStateInfo = AcceptStateInfo;
|
|
59040
59311
|
|
|
59041
|
-
},{}],
|
|
59312
|
+
},{}],351:[function(require,module,exports){
|
|
59042
59313
|
"use strict";
|
|
59043
59314
|
/*!
|
|
59044
59315
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59213,7 +59484,7 @@ DFA = __decorate([
|
|
|
59213
59484
|
], DFA);
|
|
59214
59485
|
exports.DFA = DFA;
|
|
59215
59486
|
|
|
59216
|
-
},{"../Decorators":
|
|
59487
|
+
},{"../Decorators":253,"../VocabularyImpl":284,"../atn/ATNConfigSet":288,"../atn/StarLoopEntryState":345,"../misc/Array2DHashSet":357,"../misc/ObjectEqualityComparator":369,"./DFASerializer":352,"./DFAState":353,"./LexerDFASerializer":354}],352:[function(require,module,exports){
|
|
59217
59488
|
"use strict";
|
|
59218
59489
|
/*!
|
|
59219
59490
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59355,7 +59626,7 @@ __decorate([
|
|
|
59355
59626
|
], DFASerializer.prototype, "toString", null);
|
|
59356
59627
|
exports.DFASerializer = DFASerializer;
|
|
59357
59628
|
|
|
59358
|
-
},{"../Decorators":
|
|
59629
|
+
},{"../Decorators":253,"../Recognizer":273,"../VocabularyImpl":284,"../atn/ATNSimulator":291,"../atn/PredictionContext":333}],353:[function(require,module,exports){
|
|
59359
59630
|
"use strict";
|
|
59360
59631
|
/*!
|
|
59361
59632
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59586,7 +59857,7 @@ exports.DFAState = DFAState;
|
|
|
59586
59857
|
DFAState.PredPrediction = PredPrediction;
|
|
59587
59858
|
})(DFAState = exports.DFAState || (exports.DFAState = {}));
|
|
59588
59859
|
|
|
59589
|
-
},{"../Decorators":
|
|
59860
|
+
},{"../Decorators":253,"../atn/ATN":286,"../atn/PredictionContext":333,"../misc/BitSet":360,"../misc/MurmurHash":368,"assert":396}],354:[function(require,module,exports){
|
|
59590
59861
|
"use strict";
|
|
59591
59862
|
/*!
|
|
59592
59863
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59623,7 +59894,7 @@ LexerDFASerializer = __decorate([
|
|
|
59623
59894
|
], LexerDFASerializer);
|
|
59624
59895
|
exports.LexerDFASerializer = LexerDFASerializer;
|
|
59625
59896
|
|
|
59626
|
-
},{"../Decorators":
|
|
59897
|
+
},{"../Decorators":253,"../VocabularyImpl":284,"./DFASerializer":352}],355:[function(require,module,exports){
|
|
59627
59898
|
"use strict";
|
|
59628
59899
|
/*!
|
|
59629
59900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59689,7 +59960,7 @@ __exportStar(require("./Vocabulary"), exports);
|
|
|
59689
59960
|
__exportStar(require("./VocabularyImpl"), exports);
|
|
59690
59961
|
__exportStar(require("./WritableToken"), exports);
|
|
59691
59962
|
|
|
59692
|
-
},{"./ANTLRErrorListener":
|
|
59963
|
+
},{"./ANTLRErrorListener":240,"./ANTLRErrorStrategy":241,"./ANTLRInputStream":242,"./BailErrorStrategy":243,"./BufferedTokenStream":244,"./CharStream":245,"./CharStreams":246,"./CodePointBuffer":247,"./CodePointCharStream":248,"./CommonToken":249,"./CommonTokenFactory":250,"./CommonTokenStream":251,"./ConsoleErrorListener":252,"./DefaultErrorStrategy":254,"./Dependents":255,"./DiagnosticErrorListener":256,"./FailedPredicateException":257,"./InputMismatchException":258,"./IntStream":259,"./InterpreterRuleContext":260,"./Lexer":261,"./LexerInterpreter":262,"./LexerNoViableAltException":263,"./ListTokenSource":264,"./NoViableAltException":265,"./Parser":266,"./ParserErrorListener":267,"./ParserInterpreter":268,"./ParserRuleContext":269,"./ProxyErrorListener":270,"./ProxyParserErrorListener":271,"./RecognitionException":272,"./Recognizer":273,"./RuleContext":274,"./RuleContextWithAltNum":275,"./RuleDependency":276,"./RuleVersion":277,"./Token":278,"./TokenFactory":279,"./TokenSource":280,"./TokenStream":281,"./TokenStreamRewriter":282,"./Vocabulary":283,"./VocabularyImpl":284,"./WritableToken":285}],356:[function(require,module,exports){
|
|
59693
59964
|
"use strict";
|
|
59694
59965
|
/*!
|
|
59695
59966
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -59772,7 +60043,7 @@ class Array2DHashMap {
|
|
|
59772
60043
|
}
|
|
59773
60044
|
exports.Array2DHashMap = Array2DHashMap;
|
|
59774
60045
|
|
|
59775
|
-
},{"./Array2DHashSet":
|
|
60046
|
+
},{"./Array2DHashSet":357}],357:[function(require,module,exports){
|
|
59776
60047
|
"use strict";
|
|
59777
60048
|
/*!
|
|
59778
60049
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60139,7 +60410,7 @@ __decorate([
|
|
|
60139
60410
|
], Array2DHashSet.prototype, "createBuckets", null);
|
|
60140
60411
|
exports.Array2DHashSet = Array2DHashSet;
|
|
60141
60412
|
|
|
60142
|
-
},{"../Decorators":
|
|
60413
|
+
},{"../Decorators":253,"./DefaultEqualityComparator":362,"./MurmurHash":368,"assert":396}],358:[function(require,module,exports){
|
|
60143
60414
|
"use strict";
|
|
60144
60415
|
/*!
|
|
60145
60416
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60211,7 +60482,7 @@ __decorate([
|
|
|
60211
60482
|
], ArrayEqualityComparator.prototype, "equals", null);
|
|
60212
60483
|
exports.ArrayEqualityComparator = ArrayEqualityComparator;
|
|
60213
60484
|
|
|
60214
|
-
},{"../Decorators":
|
|
60485
|
+
},{"../Decorators":253,"./MurmurHash":368,"./ObjectEqualityComparator":369}],359:[function(require,module,exports){
|
|
60215
60486
|
"use strict";
|
|
60216
60487
|
/*!
|
|
60217
60488
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60281,7 +60552,7 @@ var Arrays;
|
|
|
60281
60552
|
Arrays.toString = toString;
|
|
60282
60553
|
})(Arrays = exports.Arrays || (exports.Arrays = {}));
|
|
60283
60554
|
|
|
60284
|
-
},{}],
|
|
60555
|
+
},{}],360:[function(require,module,exports){
|
|
60285
60556
|
"use strict";
|
|
60286
60557
|
/*!
|
|
60287
60558
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60953,7 +61224,7 @@ class BitSetIterator {
|
|
|
60953
61224
|
[Symbol.iterator]() { return this; }
|
|
60954
61225
|
}
|
|
60955
61226
|
|
|
60956
|
-
},{"./MurmurHash":
|
|
61227
|
+
},{"./MurmurHash":368,"util":460}],361:[function(require,module,exports){
|
|
60957
61228
|
"use strict";
|
|
60958
61229
|
/*!
|
|
60959
61230
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -60974,7 +61245,7 @@ function isSupplementaryCodePoint(ch) {
|
|
|
60974
61245
|
}
|
|
60975
61246
|
exports.isSupplementaryCodePoint = isSupplementaryCodePoint;
|
|
60976
61247
|
|
|
60977
|
-
},{}],
|
|
61248
|
+
},{}],362:[function(require,module,exports){
|
|
60978
61249
|
"use strict";
|
|
60979
61250
|
/*!
|
|
60980
61251
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61045,7 +61316,7 @@ __decorate([
|
|
|
61045
61316
|
], DefaultEqualityComparator.prototype, "equals", null);
|
|
61046
61317
|
exports.DefaultEqualityComparator = DefaultEqualityComparator;
|
|
61047
61318
|
|
|
61048
|
-
},{"../Decorators":
|
|
61319
|
+
},{"../Decorators":253,"./MurmurHash":368,"./ObjectEqualityComparator":369}],363:[function(require,module,exports){
|
|
61049
61320
|
"use strict";
|
|
61050
61321
|
/*!
|
|
61051
61322
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61339,7 +61610,7 @@ __decorate([
|
|
|
61339
61610
|
], IntegerList.prototype, "toString", null);
|
|
61340
61611
|
exports.IntegerList = IntegerList;
|
|
61341
61612
|
|
|
61342
|
-
},{"../Decorators":
|
|
61613
|
+
},{"../Decorators":253,"./Arrays":359}],364:[function(require,module,exports){
|
|
61343
61614
|
"use strict";
|
|
61344
61615
|
/*!
|
|
61345
61616
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61369,7 +61640,7 @@ class IntegerStack extends IntegerList_1.IntegerList {
|
|
|
61369
61640
|
}
|
|
61370
61641
|
exports.IntegerStack = IntegerStack;
|
|
61371
61642
|
|
|
61372
|
-
},{"./IntegerList":
|
|
61643
|
+
},{"./IntegerList":363}],365:[function(require,module,exports){
|
|
61373
61644
|
"use strict";
|
|
61374
61645
|
/*!
|
|
61375
61646
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -61512,7 +61783,7 @@ __decorate([
|
|
|
61512
61783
|
], Interval.prototype, "toString", null);
|
|
61513
61784
|
exports.Interval = Interval;
|
|
61514
61785
|
|
|
61515
|
-
},{"../Decorators":
|
|
61786
|
+
},{"../Decorators":253}],366:[function(require,module,exports){
|
|
61516
61787
|
"use strict";
|
|
61517
61788
|
/*!
|
|
61518
61789
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62158,7 +62429,7 @@ __decorate([
|
|
|
62158
62429
|
], IntervalSet, "subtract", null);
|
|
62159
62430
|
exports.IntervalSet = IntervalSet;
|
|
62160
62431
|
|
|
62161
|
-
},{"../Decorators":
|
|
62432
|
+
},{"../Decorators":253,"../Lexer":261,"../Token":278,"./ArrayEqualityComparator":358,"./IntegerList":363,"./Interval":365,"./MurmurHash":368}],367:[function(require,module,exports){
|
|
62162
62433
|
"use strict";
|
|
62163
62434
|
/*!
|
|
62164
62435
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62191,7 +62462,7 @@ class MultiMap extends Map {
|
|
|
62191
62462
|
}
|
|
62192
62463
|
exports.MultiMap = MultiMap;
|
|
62193
62464
|
|
|
62194
|
-
},{}],
|
|
62465
|
+
},{}],368:[function(require,module,exports){
|
|
62195
62466
|
"use strict";
|
|
62196
62467
|
/*!
|
|
62197
62468
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62306,7 +62577,7 @@ var MurmurHash;
|
|
|
62306
62577
|
}
|
|
62307
62578
|
})(MurmurHash = exports.MurmurHash || (exports.MurmurHash = {}));
|
|
62308
62579
|
|
|
62309
|
-
},{}],
|
|
62580
|
+
},{}],369:[function(require,module,exports){
|
|
62310
62581
|
"use strict";
|
|
62311
62582
|
/*!
|
|
62312
62583
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62365,7 +62636,7 @@ __decorate([
|
|
|
62365
62636
|
], ObjectEqualityComparator.prototype, "equals", null);
|
|
62366
62637
|
exports.ObjectEqualityComparator = ObjectEqualityComparator;
|
|
62367
62638
|
|
|
62368
|
-
},{"../Decorators":
|
|
62639
|
+
},{"../Decorators":253}],370:[function(require,module,exports){
|
|
62369
62640
|
"use strict";
|
|
62370
62641
|
/*!
|
|
62371
62642
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62394,7 +62665,7 @@ class ParseCancellationException extends Error {
|
|
|
62394
62665
|
}
|
|
62395
62666
|
exports.ParseCancellationException = ParseCancellationException;
|
|
62396
62667
|
|
|
62397
|
-
},{}],
|
|
62668
|
+
},{}],371:[function(require,module,exports){
|
|
62398
62669
|
"use strict";
|
|
62399
62670
|
/*!
|
|
62400
62671
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62448,7 +62719,7 @@ class UUID {
|
|
|
62448
62719
|
}
|
|
62449
62720
|
exports.UUID = UUID;
|
|
62450
62721
|
|
|
62451
|
-
},{"./MurmurHash":
|
|
62722
|
+
},{"./MurmurHash":368}],372:[function(require,module,exports){
|
|
62452
62723
|
"use strict";
|
|
62453
62724
|
/*!
|
|
62454
62725
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62623,7 +62894,7 @@ exports.toCharArray = toCharArray;
|
|
|
62623
62894
|
// return s;
|
|
62624
62895
|
// }
|
|
62625
62896
|
|
|
62626
|
-
},{}],
|
|
62897
|
+
},{}],373:[function(require,module,exports){
|
|
62627
62898
|
"use strict";
|
|
62628
62899
|
/*!
|
|
62629
62900
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62659,7 +62930,7 @@ __decorate([
|
|
|
62659
62930
|
], ErrorNode.prototype, "accept", null);
|
|
62660
62931
|
exports.ErrorNode = ErrorNode;
|
|
62661
62932
|
|
|
62662
|
-
},{"../Decorators":
|
|
62933
|
+
},{"../Decorators":253,"./TerminalNode":376}],374:[function(require,module,exports){
|
|
62663
62934
|
"use strict";
|
|
62664
62935
|
/*!
|
|
62665
62936
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62764,7 +63035,7 @@ exports.ParseTreeWalker = ParseTreeWalker;
|
|
|
62764
63035
|
ParseTreeWalker.DEFAULT = new ParseTreeWalker();
|
|
62765
63036
|
})(ParseTreeWalker = exports.ParseTreeWalker || (exports.ParseTreeWalker = {}));
|
|
62766
63037
|
|
|
62767
|
-
},{"./ErrorNode":
|
|
63038
|
+
},{"./ErrorNode":373,"./RuleNode":375,"./TerminalNode":376}],375:[function(require,module,exports){
|
|
62768
63039
|
"use strict";
|
|
62769
63040
|
/*!
|
|
62770
63041
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62776,7 +63047,7 @@ class RuleNode {
|
|
|
62776
63047
|
}
|
|
62777
63048
|
exports.RuleNode = RuleNode;
|
|
62778
63049
|
|
|
62779
|
-
},{}],
|
|
63050
|
+
},{}],376:[function(require,module,exports){
|
|
62780
63051
|
"use strict";
|
|
62781
63052
|
/*!
|
|
62782
63053
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -62868,7 +63139,7 @@ __decorate([
|
|
|
62868
63139
|
], TerminalNode.prototype, "toString", null);
|
|
62869
63140
|
exports.TerminalNode = TerminalNode;
|
|
62870
63141
|
|
|
62871
|
-
},{"../Decorators":
|
|
63142
|
+
},{"../Decorators":253,"../Token":278,"../misc/Interval":365}],377:[function(require,module,exports){
|
|
62872
63143
|
"use strict";
|
|
62873
63144
|
/*!
|
|
62874
63145
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63112,7 +63383,7 @@ __decorate([
|
|
|
63112
63383
|
], Trees, "getRootOfSubtreeEnclosingRegion", null);
|
|
63113
63384
|
exports.Trees = Trees;
|
|
63114
63385
|
|
|
63115
|
-
},{"../CommonToken":
|
|
63386
|
+
},{"../CommonToken":249,"../Decorators":253,"../Parser":266,"../ParserRuleContext":269,"../Token":278,"../atn/ATN":286,"../misc/Utils":372,"./ErrorNode":373,"./RuleNode":375,"./TerminalNode":376}],378:[function(require,module,exports){
|
|
63116
63387
|
"use strict";
|
|
63117
63388
|
/*!
|
|
63118
63389
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63136,7 +63407,7 @@ class Chunk {
|
|
|
63136
63407
|
}
|
|
63137
63408
|
exports.Chunk = Chunk;
|
|
63138
63409
|
|
|
63139
|
-
},{}],
|
|
63410
|
+
},{}],379:[function(require,module,exports){
|
|
63140
63411
|
"use strict";
|
|
63141
63412
|
/*!
|
|
63142
63413
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63316,7 +63587,7 @@ ParseTreeMatch = __decorate([
|
|
|
63316
63587
|
], ParseTreeMatch);
|
|
63317
63588
|
exports.ParseTreeMatch = ParseTreeMatch;
|
|
63318
63589
|
|
|
63319
|
-
},{"../../Decorators":
|
|
63590
|
+
},{"../../Decorators":253}],380:[function(require,module,exports){
|
|
63320
63591
|
"use strict";
|
|
63321
63592
|
/*!
|
|
63322
63593
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63474,7 +63745,7 @@ ParseTreePattern = __decorate([
|
|
|
63474
63745
|
], ParseTreePattern);
|
|
63475
63746
|
exports.ParseTreePattern = ParseTreePattern;
|
|
63476
63747
|
|
|
63477
|
-
},{"../../Decorators":
|
|
63748
|
+
},{"../../Decorators":253,"../xpath/XPath":386}],381:[function(require,module,exports){
|
|
63478
63749
|
"use strict";
|
|
63479
63750
|
/*!
|
|
63480
63751
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -63952,7 +64223,7 @@ exports.ParseTreePatternMatcher = ParseTreePatternMatcher;
|
|
|
63952
64223
|
ParseTreePatternMatcher.StartRuleDoesNotConsumeFullPattern = StartRuleDoesNotConsumeFullPattern;
|
|
63953
64224
|
})(ParseTreePatternMatcher = exports.ParseTreePatternMatcher || (exports.ParseTreePatternMatcher = {}));
|
|
63954
64225
|
|
|
63955
|
-
},{"../../BailErrorStrategy":
|
|
64226
|
+
},{"../../BailErrorStrategy":243,"../../CharStreams":246,"../../CommonTokenStream":251,"../../Decorators":253,"../../ListTokenSource":264,"../../ParserInterpreter":268,"../../ParserRuleContext":269,"../../RecognitionException":272,"../../Token":278,"../../misc/MultiMap":367,"../../misc/ParseCancellationException":370,"../RuleNode":375,"../TerminalNode":376,"./ParseTreeMatch":379,"./ParseTreePattern":380,"./RuleTagToken":382,"./TagChunk":383,"./TextChunk":384,"./TokenTagToken":385}],382:[function(require,module,exports){
|
|
63956
64227
|
"use strict";
|
|
63957
64228
|
/*!
|
|
63958
64229
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64150,7 +64421,7 @@ RuleTagToken = __decorate([
|
|
|
64150
64421
|
], RuleTagToken);
|
|
64151
64422
|
exports.RuleTagToken = RuleTagToken;
|
|
64152
64423
|
|
|
64153
|
-
},{"../../Decorators":
|
|
64424
|
+
},{"../../Decorators":253,"../../Token":278}],383:[function(require,module,exports){
|
|
64154
64425
|
"use strict";
|
|
64155
64426
|
/*!
|
|
64156
64427
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64237,7 +64508,7 @@ __decorate([
|
|
|
64237
64508
|
], TagChunk.prototype, "toString", null);
|
|
64238
64509
|
exports.TagChunk = TagChunk;
|
|
64239
64510
|
|
|
64240
|
-
},{"../../Decorators":
|
|
64511
|
+
},{"../../Decorators":253,"./Chunk":378}],384:[function(require,module,exports){
|
|
64241
64512
|
"use strict";
|
|
64242
64513
|
/*!
|
|
64243
64514
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64307,7 +64578,7 @@ TextChunk = __decorate([
|
|
|
64307
64578
|
], TextChunk);
|
|
64308
64579
|
exports.TextChunk = TextChunk;
|
|
64309
64580
|
|
|
64310
|
-
},{"../../Decorators":
|
|
64581
|
+
},{"../../Decorators":253,"./Chunk":378}],385:[function(require,module,exports){
|
|
64311
64582
|
"use strict";
|
|
64312
64583
|
/*!
|
|
64313
64584
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64402,7 +64673,7 @@ TokenTagToken = __decorate([
|
|
|
64402
64673
|
], TokenTagToken);
|
|
64403
64674
|
exports.TokenTagToken = TokenTagToken;
|
|
64404
64675
|
|
|
64405
|
-
},{"../../CommonToken":
|
|
64676
|
+
},{"../../CommonToken":249,"../../Decorators":253}],386:[function(require,module,exports){
|
|
64406
64677
|
"use strict";
|
|
64407
64678
|
/*!
|
|
64408
64679
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64599,7 +64870,7 @@ exports.XPath = XPath;
|
|
|
64599
64870
|
XPath.WILDCARD = "*"; // word not operator/separator
|
|
64600
64871
|
XPath.NOT = "!"; // word for invert operator
|
|
64601
64872
|
|
|
64602
|
-
},{"../../CharStreams":
|
|
64873
|
+
},{"../../CharStreams":246,"../../CommonTokenStream":251,"../../LexerNoViableAltException":263,"../../ParserRuleContext":269,"../../Token":278,"./XPathLexer":388,"./XPathLexerErrorListener":389,"./XPathRuleAnywhereElement":390,"./XPathRuleElement":391,"./XPathTokenAnywhereElement":392,"./XPathTokenElement":393,"./XPathWildcardAnywhereElement":394,"./XPathWildcardElement":395}],387:[function(require,module,exports){
|
|
64603
64874
|
"use strict";
|
|
64604
64875
|
/*!
|
|
64605
64876
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -64634,7 +64905,7 @@ __decorate([
|
|
|
64634
64905
|
], XPathElement.prototype, "toString", null);
|
|
64635
64906
|
exports.XPathElement = XPathElement;
|
|
64636
64907
|
|
|
64637
|
-
},{"../../Decorators":
|
|
64908
|
+
},{"../../Decorators":253}],388:[function(require,module,exports){
|
|
64638
64909
|
"use strict";
|
|
64639
64910
|
// Generated from XPathLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
64640
64911
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -65109,7 +65380,7 @@ XPathLexer._serializedATN = Utils.join([
|
|
|
65109
65380
|
XPathLexer._serializedATNSegment1,
|
|
65110
65381
|
], "");
|
|
65111
65382
|
|
|
65112
|
-
},{"../../Lexer":
|
|
65383
|
+
},{"../../Lexer":261,"../../VocabularyImpl":284,"../../atn/ATNDeserializer":290,"../../atn/LexerATNSimulator":311,"../../misc/Utils":372}],389:[function(require,module,exports){
|
|
65113
65384
|
"use strict";
|
|
65114
65385
|
/*!
|
|
65115
65386
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65134,7 +65405,7 @@ __decorate([
|
|
|
65134
65405
|
], XPathLexerErrorListener.prototype, "syntaxError", null);
|
|
65135
65406
|
exports.XPathLexerErrorListener = XPathLexerErrorListener;
|
|
65136
65407
|
|
|
65137
|
-
},{"../../Decorators":
|
|
65408
|
+
},{"../../Decorators":253}],390:[function(require,module,exports){
|
|
65138
65409
|
"use strict";
|
|
65139
65410
|
/*!
|
|
65140
65411
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65168,7 +65439,7 @@ __decorate([
|
|
|
65168
65439
|
], XPathRuleAnywhereElement.prototype, "evaluate", null);
|
|
65169
65440
|
exports.XPathRuleAnywhereElement = XPathRuleAnywhereElement;
|
|
65170
65441
|
|
|
65171
|
-
},{"../../Decorators":
|
|
65442
|
+
},{"../../Decorators":253,"../Trees":377,"./XPathElement":387}],391:[function(require,module,exports){
|
|
65172
65443
|
"use strict";
|
|
65173
65444
|
/*!
|
|
65174
65445
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65211,7 +65482,7 @@ __decorate([
|
|
|
65211
65482
|
], XPathRuleElement.prototype, "evaluate", null);
|
|
65212
65483
|
exports.XPathRuleElement = XPathRuleElement;
|
|
65213
65484
|
|
|
65214
|
-
},{"../../Decorators":
|
|
65485
|
+
},{"../../Decorators":253,"../../ParserRuleContext":269,"../Trees":377,"./XPathElement":387}],392:[function(require,module,exports){
|
|
65215
65486
|
"use strict";
|
|
65216
65487
|
/*!
|
|
65217
65488
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65243,7 +65514,7 @@ __decorate([
|
|
|
65243
65514
|
], XPathTokenAnywhereElement.prototype, "evaluate", null);
|
|
65244
65515
|
exports.XPathTokenAnywhereElement = XPathTokenAnywhereElement;
|
|
65245
65516
|
|
|
65246
|
-
},{"../../Decorators":
|
|
65517
|
+
},{"../../Decorators":253,"../Trees":377,"./XPathElement":387}],393:[function(require,module,exports){
|
|
65247
65518
|
"use strict";
|
|
65248
65519
|
/*!
|
|
65249
65520
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65286,7 +65557,7 @@ __decorate([
|
|
|
65286
65557
|
], XPathTokenElement.prototype, "evaluate", null);
|
|
65287
65558
|
exports.XPathTokenElement = XPathTokenElement;
|
|
65288
65559
|
|
|
65289
|
-
},{"../../Decorators":
|
|
65560
|
+
},{"../../Decorators":253,"../TerminalNode":376,"../Trees":377,"./XPathElement":387}],394:[function(require,module,exports){
|
|
65290
65561
|
"use strict";
|
|
65291
65562
|
/*!
|
|
65292
65563
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65322,7 +65593,7 @@ __decorate([
|
|
|
65322
65593
|
], XPathWildcardAnywhereElement.prototype, "evaluate", null);
|
|
65323
65594
|
exports.XPathWildcardAnywhereElement = XPathWildcardAnywhereElement;
|
|
65324
65595
|
|
|
65325
|
-
},{"../../Decorators":
|
|
65596
|
+
},{"../../Decorators":253,"../Trees":377,"./XPath":386,"./XPathElement":387}],395:[function(require,module,exports){
|
|
65326
65597
|
"use strict";
|
|
65327
65598
|
/*!
|
|
65328
65599
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
@@ -65362,7 +65633,7 @@ __decorate([
|
|
|
65362
65633
|
], XPathWildcardElement.prototype, "evaluate", null);
|
|
65363
65634
|
exports.XPathWildcardElement = XPathWildcardElement;
|
|
65364
65635
|
|
|
65365
|
-
},{"../../Decorators":
|
|
65636
|
+
},{"../../Decorators":253,"../Trees":377,"./XPath":386,"./XPathElement":387}],396:[function(require,module,exports){
|
|
65366
65637
|
(function (global){(function (){
|
|
65367
65638
|
'use strict';
|
|
65368
65639
|
|
|
@@ -65872,7 +66143,7 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
65872
66143
|
};
|
|
65873
66144
|
|
|
65874
66145
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
65875
|
-
},{"object.assign/polyfill":
|
|
66146
|
+
},{"object.assign/polyfill":453,"util/":399}],397:[function(require,module,exports){
|
|
65876
66147
|
if (typeof Object.create === 'function') {
|
|
65877
66148
|
// implementation from standard node.js 'util' module
|
|
65878
66149
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -65897,14 +66168,14 @@ if (typeof Object.create === 'function') {
|
|
|
65897
66168
|
}
|
|
65898
66169
|
}
|
|
65899
66170
|
|
|
65900
|
-
},{}],
|
|
66171
|
+
},{}],398:[function(require,module,exports){
|
|
65901
66172
|
module.exports = function isBuffer(arg) {
|
|
65902
66173
|
return arg && typeof arg === 'object'
|
|
65903
66174
|
&& typeof arg.copy === 'function'
|
|
65904
66175
|
&& typeof arg.fill === 'function'
|
|
65905
66176
|
&& typeof arg.readUInt8 === 'function';
|
|
65906
66177
|
}
|
|
65907
|
-
},{}],
|
|
66178
|
+
},{}],399:[function(require,module,exports){
|
|
65908
66179
|
(function (process,global){(function (){
|
|
65909
66180
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
65910
66181
|
//
|
|
@@ -66494,7 +66765,7 @@ function hasOwnProperty(obj, prop) {
|
|
|
66494
66765
|
}
|
|
66495
66766
|
|
|
66496
66767
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66497
|
-
},{"./support/isBuffer":
|
|
66768
|
+
},{"./support/isBuffer":398,"_process":455,"inherits":397}],400:[function(require,module,exports){
|
|
66498
66769
|
(function (global){(function (){
|
|
66499
66770
|
'use strict';
|
|
66500
66771
|
|
|
@@ -66515,7 +66786,7 @@ module.exports = function availableTypedArrays() {
|
|
|
66515
66786
|
};
|
|
66516
66787
|
|
|
66517
66788
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66518
|
-
},{"possible-typed-array-names":
|
|
66789
|
+
},{"possible-typed-array-names":454}],401:[function(require,module,exports){
|
|
66519
66790
|
(function (process,global){(function (){
|
|
66520
66791
|
module.exports = process.hrtime || hrtime
|
|
66521
66792
|
|
|
@@ -66546,7 +66817,7 @@ function hrtime(previousTimestamp){
|
|
|
66546
66817
|
return [seconds,nanoseconds]
|
|
66547
66818
|
}
|
|
66548
66819
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
66549
|
-
},{"_process":
|
|
66820
|
+
},{"_process":455}],402:[function(require,module,exports){
|
|
66550
66821
|
'use strict';
|
|
66551
66822
|
|
|
66552
66823
|
var bind = require('function-bind');
|
|
@@ -66558,7 +66829,7 @@ var $reflectApply = require('./reflectApply');
|
|
|
66558
66829
|
/** @type {import('./actualApply')} */
|
|
66559
66830
|
module.exports = $reflectApply || bind.call($call, $apply);
|
|
66560
66831
|
|
|
66561
|
-
},{"./functionApply":
|
|
66832
|
+
},{"./functionApply":404,"./functionCall":405,"./reflectApply":407,"function-bind":423}],403:[function(require,module,exports){
|
|
66562
66833
|
'use strict';
|
|
66563
66834
|
|
|
66564
66835
|
var bind = require('function-bind');
|
|
@@ -66570,19 +66841,19 @@ module.exports = function applyBind() {
|
|
|
66570
66841
|
return actualApply(bind, $apply, arguments);
|
|
66571
66842
|
};
|
|
66572
66843
|
|
|
66573
|
-
},{"./actualApply":
|
|
66844
|
+
},{"./actualApply":402,"./functionApply":404,"function-bind":423}],404:[function(require,module,exports){
|
|
66574
66845
|
'use strict';
|
|
66575
66846
|
|
|
66576
66847
|
/** @type {import('./functionApply')} */
|
|
66577
66848
|
module.exports = Function.prototype.apply;
|
|
66578
66849
|
|
|
66579
|
-
},{}],
|
|
66850
|
+
},{}],405:[function(require,module,exports){
|
|
66580
66851
|
'use strict';
|
|
66581
66852
|
|
|
66582
66853
|
/** @type {import('./functionCall')} */
|
|
66583
66854
|
module.exports = Function.prototype.call;
|
|
66584
66855
|
|
|
66585
|
-
},{}],
|
|
66856
|
+
},{}],406:[function(require,module,exports){
|
|
66586
66857
|
'use strict';
|
|
66587
66858
|
|
|
66588
66859
|
var bind = require('function-bind');
|
|
@@ -66599,13 +66870,13 @@ module.exports = function callBindBasic(args) {
|
|
|
66599
66870
|
return $actualApply(bind, $call, args);
|
|
66600
66871
|
};
|
|
66601
66872
|
|
|
66602
|
-
},{"./actualApply":
|
|
66873
|
+
},{"./actualApply":402,"./functionCall":405,"es-errors/type":418,"function-bind":423}],407:[function(require,module,exports){
|
|
66603
66874
|
'use strict';
|
|
66604
66875
|
|
|
66605
66876
|
/** @type {import('./reflectApply')} */
|
|
66606
66877
|
module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply;
|
|
66607
66878
|
|
|
66608
|
-
},{}],
|
|
66879
|
+
},{}],408:[function(require,module,exports){
|
|
66609
66880
|
'use strict';
|
|
66610
66881
|
|
|
66611
66882
|
var setFunctionLength = require('set-function-length');
|
|
@@ -66631,7 +66902,7 @@ if ($defineProperty) {
|
|
|
66631
66902
|
module.exports.apply = applyBind;
|
|
66632
66903
|
}
|
|
66633
66904
|
|
|
66634
|
-
},{"call-bind-apply-helpers":
|
|
66905
|
+
},{"call-bind-apply-helpers":406,"call-bind-apply-helpers/applyBind":403,"es-define-property":412,"set-function-length":457}],409:[function(require,module,exports){
|
|
66635
66906
|
'use strict';
|
|
66636
66907
|
|
|
66637
66908
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -66652,7 +66923,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
66652
66923
|
return intrinsic;
|
|
66653
66924
|
};
|
|
66654
66925
|
|
|
66655
|
-
},{"call-bind-apply-helpers":
|
|
66926
|
+
},{"call-bind-apply-helpers":406,"get-intrinsic":424}],410:[function(require,module,exports){
|
|
66656
66927
|
'use strict';
|
|
66657
66928
|
|
|
66658
66929
|
var $defineProperty = require('es-define-property');
|
|
@@ -66710,7 +66981,7 @@ module.exports = function defineDataProperty(
|
|
|
66710
66981
|
}
|
|
66711
66982
|
};
|
|
66712
66983
|
|
|
66713
|
-
},{"es-define-property":
|
|
66984
|
+
},{"es-define-property":412,"es-errors/syntax":417,"es-errors/type":418,"gopd":429}],411:[function(require,module,exports){
|
|
66714
66985
|
'use strict';
|
|
66715
66986
|
|
|
66716
66987
|
var callBind = require('call-bind-apply-helpers');
|
|
@@ -66742,7 +67013,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
66742
67013
|
}
|
|
66743
67014
|
: false;
|
|
66744
67015
|
|
|
66745
|
-
},{"call-bind-apply-helpers":
|
|
67016
|
+
},{"call-bind-apply-helpers":406,"gopd":429}],412:[function(require,module,exports){
|
|
66746
67017
|
'use strict';
|
|
66747
67018
|
|
|
66748
67019
|
/** @type {import('.')} */
|
|
@@ -66758,55 +67029,55 @@ if ($defineProperty) {
|
|
|
66758
67029
|
|
|
66759
67030
|
module.exports = $defineProperty;
|
|
66760
67031
|
|
|
66761
|
-
},{}],
|
|
67032
|
+
},{}],413:[function(require,module,exports){
|
|
66762
67033
|
'use strict';
|
|
66763
67034
|
|
|
66764
67035
|
/** @type {import('./eval')} */
|
|
66765
67036
|
module.exports = EvalError;
|
|
66766
67037
|
|
|
66767
|
-
},{}],
|
|
67038
|
+
},{}],414:[function(require,module,exports){
|
|
66768
67039
|
'use strict';
|
|
66769
67040
|
|
|
66770
67041
|
/** @type {import('.')} */
|
|
66771
67042
|
module.exports = Error;
|
|
66772
67043
|
|
|
66773
|
-
},{}],
|
|
67044
|
+
},{}],415:[function(require,module,exports){
|
|
66774
67045
|
'use strict';
|
|
66775
67046
|
|
|
66776
67047
|
/** @type {import('./range')} */
|
|
66777
67048
|
module.exports = RangeError;
|
|
66778
67049
|
|
|
66779
|
-
},{}],
|
|
67050
|
+
},{}],416:[function(require,module,exports){
|
|
66780
67051
|
'use strict';
|
|
66781
67052
|
|
|
66782
67053
|
/** @type {import('./ref')} */
|
|
66783
67054
|
module.exports = ReferenceError;
|
|
66784
67055
|
|
|
66785
|
-
},{}],
|
|
67056
|
+
},{}],417:[function(require,module,exports){
|
|
66786
67057
|
'use strict';
|
|
66787
67058
|
|
|
66788
67059
|
/** @type {import('./syntax')} */
|
|
66789
67060
|
module.exports = SyntaxError;
|
|
66790
67061
|
|
|
66791
|
-
},{}],
|
|
67062
|
+
},{}],418:[function(require,module,exports){
|
|
66792
67063
|
'use strict';
|
|
66793
67064
|
|
|
66794
67065
|
/** @type {import('./type')} */
|
|
66795
67066
|
module.exports = TypeError;
|
|
66796
67067
|
|
|
66797
|
-
},{}],
|
|
67068
|
+
},{}],419:[function(require,module,exports){
|
|
66798
67069
|
'use strict';
|
|
66799
67070
|
|
|
66800
67071
|
/** @type {import('./uri')} */
|
|
66801
67072
|
module.exports = URIError;
|
|
66802
67073
|
|
|
66803
|
-
},{}],
|
|
67074
|
+
},{}],420:[function(require,module,exports){
|
|
66804
67075
|
'use strict';
|
|
66805
67076
|
|
|
66806
67077
|
/** @type {import('.')} */
|
|
66807
67078
|
module.exports = Object;
|
|
66808
67079
|
|
|
66809
|
-
},{}],
|
|
67080
|
+
},{}],421:[function(require,module,exports){
|
|
66810
67081
|
'use strict';
|
|
66811
67082
|
|
|
66812
67083
|
var isCallable = require('is-callable');
|
|
@@ -66877,7 +67148,7 @@ module.exports = function forEach(list, iterator, thisArg) {
|
|
|
66877
67148
|
}
|
|
66878
67149
|
};
|
|
66879
67150
|
|
|
66880
|
-
},{"is-callable":
|
|
67151
|
+
},{"is-callable":437}],422:[function(require,module,exports){
|
|
66881
67152
|
'use strict';
|
|
66882
67153
|
|
|
66883
67154
|
/* eslint no-invalid-this: 1 */
|
|
@@ -66963,14 +67234,14 @@ module.exports = function bind(that) {
|
|
|
66963
67234
|
return bound;
|
|
66964
67235
|
};
|
|
66965
67236
|
|
|
66966
|
-
},{}],
|
|
67237
|
+
},{}],423:[function(require,module,exports){
|
|
66967
67238
|
'use strict';
|
|
66968
67239
|
|
|
66969
67240
|
var implementation = require('./implementation');
|
|
66970
67241
|
|
|
66971
67242
|
module.exports = Function.prototype.bind || implementation;
|
|
66972
67243
|
|
|
66973
|
-
},{"./implementation":
|
|
67244
|
+
},{"./implementation":422}],424:[function(require,module,exports){
|
|
66974
67245
|
'use strict';
|
|
66975
67246
|
|
|
66976
67247
|
var undefined;
|
|
@@ -67350,7 +67621,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
67350
67621
|
return value;
|
|
67351
67622
|
};
|
|
67352
67623
|
|
|
67353
|
-
},{"call-bind-apply-helpers/functionApply":
|
|
67624
|
+
},{"call-bind-apply-helpers/functionApply":404,"call-bind-apply-helpers/functionCall":405,"es-define-property":412,"es-errors":414,"es-errors/eval":413,"es-errors/range":415,"es-errors/ref":416,"es-errors/syntax":417,"es-errors/type":418,"es-errors/uri":419,"es-object-atoms":420,"function-bind":423,"get-proto":427,"get-proto/Object.getPrototypeOf":425,"get-proto/Reflect.getPrototypeOf":426,"gopd":429,"has-symbols":431,"hasown":434,"math-intrinsics/abs":441,"math-intrinsics/floor":442,"math-intrinsics/max":444,"math-intrinsics/min":445,"math-intrinsics/pow":446,"math-intrinsics/round":447,"math-intrinsics/sign":448}],425:[function(require,module,exports){
|
|
67354
67625
|
'use strict';
|
|
67355
67626
|
|
|
67356
67627
|
var $Object = require('es-object-atoms');
|
|
@@ -67358,13 +67629,13 @@ var $Object = require('es-object-atoms');
|
|
|
67358
67629
|
/** @type {import('./Object.getPrototypeOf')} */
|
|
67359
67630
|
module.exports = $Object.getPrototypeOf || null;
|
|
67360
67631
|
|
|
67361
|
-
},{"es-object-atoms":
|
|
67632
|
+
},{"es-object-atoms":420}],426:[function(require,module,exports){
|
|
67362
67633
|
'use strict';
|
|
67363
67634
|
|
|
67364
67635
|
/** @type {import('./Reflect.getPrototypeOf')} */
|
|
67365
67636
|
module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null;
|
|
67366
67637
|
|
|
67367
|
-
},{}],
|
|
67638
|
+
},{}],427:[function(require,module,exports){
|
|
67368
67639
|
'use strict';
|
|
67369
67640
|
|
|
67370
67641
|
var reflectGetProto = require('./Reflect.getPrototypeOf');
|
|
@@ -67393,13 +67664,13 @@ module.exports = reflectGetProto
|
|
|
67393
67664
|
}
|
|
67394
67665
|
: null;
|
|
67395
67666
|
|
|
67396
|
-
},{"./Object.getPrototypeOf":
|
|
67667
|
+
},{"./Object.getPrototypeOf":425,"./Reflect.getPrototypeOf":426,"dunder-proto/get":411}],428:[function(require,module,exports){
|
|
67397
67668
|
'use strict';
|
|
67398
67669
|
|
|
67399
67670
|
/** @type {import('./gOPD')} */
|
|
67400
67671
|
module.exports = Object.getOwnPropertyDescriptor;
|
|
67401
67672
|
|
|
67402
|
-
},{}],
|
|
67673
|
+
},{}],429:[function(require,module,exports){
|
|
67403
67674
|
'use strict';
|
|
67404
67675
|
|
|
67405
67676
|
/** @type {import('.')} */
|
|
@@ -67416,7 +67687,7 @@ if ($gOPD) {
|
|
|
67416
67687
|
|
|
67417
67688
|
module.exports = $gOPD;
|
|
67418
67689
|
|
|
67419
|
-
},{"./gOPD":
|
|
67690
|
+
},{"./gOPD":428}],430:[function(require,module,exports){
|
|
67420
67691
|
'use strict';
|
|
67421
67692
|
|
|
67422
67693
|
var $defineProperty = require('es-define-property');
|
|
@@ -67440,7 +67711,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
67440
67711
|
|
|
67441
67712
|
module.exports = hasPropertyDescriptors;
|
|
67442
67713
|
|
|
67443
|
-
},{"es-define-property":
|
|
67714
|
+
},{"es-define-property":412}],431:[function(require,module,exports){
|
|
67444
67715
|
'use strict';
|
|
67445
67716
|
|
|
67446
67717
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -67456,7 +67727,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
67456
67727
|
return hasSymbolSham();
|
|
67457
67728
|
};
|
|
67458
67729
|
|
|
67459
|
-
},{"./shams":
|
|
67730
|
+
},{"./shams":432}],432:[function(require,module,exports){
|
|
67460
67731
|
'use strict';
|
|
67461
67732
|
|
|
67462
67733
|
/** @type {import('./shams')} */
|
|
@@ -67503,7 +67774,7 @@ module.exports = function hasSymbols() {
|
|
|
67503
67774
|
return true;
|
|
67504
67775
|
};
|
|
67505
67776
|
|
|
67506
|
-
},{}],
|
|
67777
|
+
},{}],433:[function(require,module,exports){
|
|
67507
67778
|
'use strict';
|
|
67508
67779
|
|
|
67509
67780
|
var hasSymbols = require('has-symbols/shams');
|
|
@@ -67513,7 +67784,7 @@ module.exports = function hasToStringTagShams() {
|
|
|
67513
67784
|
return hasSymbols() && !!Symbol.toStringTag;
|
|
67514
67785
|
};
|
|
67515
67786
|
|
|
67516
|
-
},{"has-symbols/shams":
|
|
67787
|
+
},{"has-symbols/shams":432}],434:[function(require,module,exports){
|
|
67517
67788
|
'use strict';
|
|
67518
67789
|
|
|
67519
67790
|
var call = Function.prototype.call;
|
|
@@ -67523,7 +67794,7 @@ var bind = require('function-bind');
|
|
|
67523
67794
|
/** @type {import('.')} */
|
|
67524
67795
|
module.exports = bind.call(call, $hasOwn);
|
|
67525
67796
|
|
|
67526
|
-
},{"function-bind":
|
|
67797
|
+
},{"function-bind":423}],435:[function(require,module,exports){
|
|
67527
67798
|
if (typeof Object.create === 'function') {
|
|
67528
67799
|
// implementation from standard node.js 'util' module
|
|
67529
67800
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -67552,7 +67823,7 @@ if (typeof Object.create === 'function') {
|
|
|
67552
67823
|
}
|
|
67553
67824
|
}
|
|
67554
67825
|
|
|
67555
|
-
},{}],
|
|
67826
|
+
},{}],436:[function(require,module,exports){
|
|
67556
67827
|
'use strict';
|
|
67557
67828
|
|
|
67558
67829
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -67598,7 +67869,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
67598
67869
|
/** @type {import('.')} */
|
|
67599
67870
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
67600
67871
|
|
|
67601
|
-
},{"call-bound":
|
|
67872
|
+
},{"call-bound":409,"has-tostringtag/shams":433}],437:[function(require,module,exports){
|
|
67602
67873
|
'use strict';
|
|
67603
67874
|
|
|
67604
67875
|
var fnToStr = Function.prototype.toString;
|
|
@@ -67701,7 +67972,7 @@ module.exports = reflectApply
|
|
|
67701
67972
|
return tryFunctionObject(value);
|
|
67702
67973
|
};
|
|
67703
67974
|
|
|
67704
|
-
},{}],
|
|
67975
|
+
},{}],438:[function(require,module,exports){
|
|
67705
67976
|
'use strict';
|
|
67706
67977
|
|
|
67707
67978
|
var callBound = require('call-bound');
|
|
@@ -67750,7 +68021,7 @@ module.exports = function isGeneratorFunction(fn) {
|
|
|
67750
68021
|
return getProto(fn) === GeneratorFunction;
|
|
67751
68022
|
};
|
|
67752
68023
|
|
|
67753
|
-
},{"call-bound":
|
|
68024
|
+
},{"call-bound":409,"get-proto":427,"has-tostringtag/shams":433,"safe-regex-test":456}],439:[function(require,module,exports){
|
|
67754
68025
|
'use strict';
|
|
67755
68026
|
|
|
67756
68027
|
var callBound = require('call-bound');
|
|
@@ -67821,7 +68092,7 @@ if (hasToStringTag) {
|
|
|
67821
68092
|
|
|
67822
68093
|
module.exports = fn;
|
|
67823
68094
|
|
|
67824
|
-
},{"call-bound":
|
|
68095
|
+
},{"call-bound":409,"gopd":429,"has-tostringtag/shams":433,"hasown":434}],440:[function(require,module,exports){
|
|
67825
68096
|
'use strict';
|
|
67826
68097
|
|
|
67827
68098
|
var whichTypedArray = require('which-typed-array');
|
|
@@ -67831,19 +68102,19 @@ module.exports = function isTypedArray(value) {
|
|
|
67831
68102
|
return !!whichTypedArray(value);
|
|
67832
68103
|
};
|
|
67833
68104
|
|
|
67834
|
-
},{"which-typed-array":
|
|
68105
|
+
},{"which-typed-array":461}],441:[function(require,module,exports){
|
|
67835
68106
|
'use strict';
|
|
67836
68107
|
|
|
67837
68108
|
/** @type {import('./abs')} */
|
|
67838
68109
|
module.exports = Math.abs;
|
|
67839
68110
|
|
|
67840
|
-
},{}],
|
|
68111
|
+
},{}],442:[function(require,module,exports){
|
|
67841
68112
|
'use strict';
|
|
67842
68113
|
|
|
67843
68114
|
/** @type {import('./floor')} */
|
|
67844
68115
|
module.exports = Math.floor;
|
|
67845
68116
|
|
|
67846
|
-
},{}],
|
|
68117
|
+
},{}],443:[function(require,module,exports){
|
|
67847
68118
|
'use strict';
|
|
67848
68119
|
|
|
67849
68120
|
/** @type {import('./isNaN')} */
|
|
@@ -67851,31 +68122,31 @@ module.exports = Number.isNaN || function isNaN(a) {
|
|
|
67851
68122
|
return a !== a;
|
|
67852
68123
|
};
|
|
67853
68124
|
|
|
67854
|
-
},{}],
|
|
68125
|
+
},{}],444:[function(require,module,exports){
|
|
67855
68126
|
'use strict';
|
|
67856
68127
|
|
|
67857
68128
|
/** @type {import('./max')} */
|
|
67858
68129
|
module.exports = Math.max;
|
|
67859
68130
|
|
|
67860
|
-
},{}],
|
|
68131
|
+
},{}],445:[function(require,module,exports){
|
|
67861
68132
|
'use strict';
|
|
67862
68133
|
|
|
67863
68134
|
/** @type {import('./min')} */
|
|
67864
68135
|
module.exports = Math.min;
|
|
67865
68136
|
|
|
67866
|
-
},{}],
|
|
68137
|
+
},{}],446:[function(require,module,exports){
|
|
67867
68138
|
'use strict';
|
|
67868
68139
|
|
|
67869
68140
|
/** @type {import('./pow')} */
|
|
67870
68141
|
module.exports = Math.pow;
|
|
67871
68142
|
|
|
67872
|
-
},{}],
|
|
68143
|
+
},{}],447:[function(require,module,exports){
|
|
67873
68144
|
'use strict';
|
|
67874
68145
|
|
|
67875
68146
|
/** @type {import('./round')} */
|
|
67876
68147
|
module.exports = Math.round;
|
|
67877
68148
|
|
|
67878
|
-
},{}],
|
|
68149
|
+
},{}],448:[function(require,module,exports){
|
|
67879
68150
|
'use strict';
|
|
67880
68151
|
|
|
67881
68152
|
var $isNaN = require('./isNaN');
|
|
@@ -67888,7 +68159,7 @@ module.exports = function sign(number) {
|
|
|
67888
68159
|
return number < 0 ? -1 : +1;
|
|
67889
68160
|
};
|
|
67890
68161
|
|
|
67891
|
-
},{"./isNaN":
|
|
68162
|
+
},{"./isNaN":443}],449:[function(require,module,exports){
|
|
67892
68163
|
'use strict';
|
|
67893
68164
|
|
|
67894
68165
|
var keysShim;
|
|
@@ -68012,7 +68283,7 @@ if (!Object.keys) {
|
|
|
68012
68283
|
}
|
|
68013
68284
|
module.exports = keysShim;
|
|
68014
68285
|
|
|
68015
|
-
},{"./isArguments":
|
|
68286
|
+
},{"./isArguments":451}],450:[function(require,module,exports){
|
|
68016
68287
|
'use strict';
|
|
68017
68288
|
|
|
68018
68289
|
var slice = Array.prototype.slice;
|
|
@@ -68046,7 +68317,7 @@ keysShim.shim = function shimObjectKeys() {
|
|
|
68046
68317
|
|
|
68047
68318
|
module.exports = keysShim;
|
|
68048
68319
|
|
|
68049
|
-
},{"./implementation":
|
|
68320
|
+
},{"./implementation":449,"./isArguments":451}],451:[function(require,module,exports){
|
|
68050
68321
|
'use strict';
|
|
68051
68322
|
|
|
68052
68323
|
var toStr = Object.prototype.toString;
|
|
@@ -68065,7 +68336,7 @@ module.exports = function isArguments(value) {
|
|
|
68065
68336
|
return isArgs;
|
|
68066
68337
|
};
|
|
68067
68338
|
|
|
68068
|
-
},{}],
|
|
68339
|
+
},{}],452:[function(require,module,exports){
|
|
68069
68340
|
'use strict';
|
|
68070
68341
|
|
|
68071
68342
|
// modified from https://github.com/es-shims/es6-shim
|
|
@@ -68113,7 +68384,7 @@ module.exports = function assign(target, source1) {
|
|
|
68113
68384
|
return to; // step 4
|
|
68114
68385
|
};
|
|
68115
68386
|
|
|
68116
|
-
},{"call-bound":
|
|
68387
|
+
},{"call-bound":409,"es-object-atoms":420,"has-symbols/shams":432,"object-keys":450}],453:[function(require,module,exports){
|
|
68117
68388
|
'use strict';
|
|
68118
68389
|
|
|
68119
68390
|
var implementation = require('./implementation');
|
|
@@ -68170,7 +68441,7 @@ module.exports = function getPolyfill() {
|
|
|
68170
68441
|
return Object.assign;
|
|
68171
68442
|
};
|
|
68172
68443
|
|
|
68173
|
-
},{"./implementation":
|
|
68444
|
+
},{"./implementation":452}],454:[function(require,module,exports){
|
|
68174
68445
|
'use strict';
|
|
68175
68446
|
|
|
68176
68447
|
/** @type {import('.')} */
|
|
@@ -68189,7 +68460,7 @@ module.exports = [
|
|
|
68189
68460
|
'BigUint64Array'
|
|
68190
68461
|
];
|
|
68191
68462
|
|
|
68192
|
-
},{}],
|
|
68463
|
+
},{}],455:[function(require,module,exports){
|
|
68193
68464
|
// shim for using process in browser
|
|
68194
68465
|
var process = module.exports = {};
|
|
68195
68466
|
|
|
@@ -68375,7 +68646,7 @@ process.chdir = function (dir) {
|
|
|
68375
68646
|
};
|
|
68376
68647
|
process.umask = function() { return 0; };
|
|
68377
68648
|
|
|
68378
|
-
},{}],
|
|
68649
|
+
},{}],456:[function(require,module,exports){
|
|
68379
68650
|
'use strict';
|
|
68380
68651
|
|
|
68381
68652
|
var callBound = require('call-bound');
|
|
@@ -68394,7 +68665,7 @@ module.exports = function regexTester(regex) {
|
|
|
68394
68665
|
};
|
|
68395
68666
|
};
|
|
68396
68667
|
|
|
68397
|
-
},{"call-bound":
|
|
68668
|
+
},{"call-bound":409,"es-errors/type":418,"is-regex":439}],457:[function(require,module,exports){
|
|
68398
68669
|
'use strict';
|
|
68399
68670
|
|
|
68400
68671
|
var GetIntrinsic = require('get-intrinsic');
|
|
@@ -68438,9 +68709,9 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
68438
68709
|
return fn;
|
|
68439
68710
|
};
|
|
68440
68711
|
|
|
68441
|
-
},{"define-data-property":
|
|
68442
|
-
arguments[4][
|
|
68443
|
-
},{"dup":
|
|
68712
|
+
},{"define-data-property":410,"es-errors/type":418,"get-intrinsic":424,"gopd":429,"has-property-descriptors":430}],458:[function(require,module,exports){
|
|
68713
|
+
arguments[4][398][0].apply(exports,arguments)
|
|
68714
|
+
},{"dup":398}],459:[function(require,module,exports){
|
|
68444
68715
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
68445
68716
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
68446
68717
|
|
|
@@ -68776,7 +69047,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
68776
69047
|
});
|
|
68777
69048
|
});
|
|
68778
69049
|
|
|
68779
|
-
},{"is-arguments":
|
|
69050
|
+
},{"is-arguments":436,"is-generator-function":438,"is-typed-array":440,"which-typed-array":461}],460:[function(require,module,exports){
|
|
68780
69051
|
(function (process){(function (){
|
|
68781
69052
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
68782
69053
|
//
|
|
@@ -69495,7 +69766,7 @@ function callbackify(original) {
|
|
|
69495
69766
|
exports.callbackify = callbackify;
|
|
69496
69767
|
|
|
69497
69768
|
}).call(this)}).call(this,require('_process'))
|
|
69498
|
-
},{"./support/isBuffer":
|
|
69769
|
+
},{"./support/isBuffer":458,"./support/types":459,"_process":455,"inherits":435}],461:[function(require,module,exports){
|
|
69499
69770
|
(function (global){(function (){
|
|
69500
69771
|
'use strict';
|
|
69501
69772
|
|
|
@@ -69616,5 +69887,5 @@ module.exports = function whichTypedArray(value) {
|
|
|
69616
69887
|
};
|
|
69617
69888
|
|
|
69618
69889
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
69619
|
-
},{"available-typed-arrays":
|
|
69890
|
+
},{"available-typed-arrays":400,"call-bind":408,"call-bound":409,"for-each":421,"get-proto":427,"gopd":429,"has-tostringtag/shams":433}]},{},[134])(134)
|
|
69620
69891
|
});
|