@designliquido/delegua 0.1.0 → 0.1.4
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/delegua +2 -2
- package/bin/delegua.cmd +1 -1
- package/bin/package.json +51 -0
- package/index.js +27 -0
- package/index.js.map +1 -0
- package/package.json +4 -4
- package/src/ambiente.js +49 -0
- package/src/ambiente.js.map +1 -0
- package/src/avaliador-sintatico/dialetos/egua-classico.js +635 -0
- package/src/avaliador-sintatico/dialetos/egua-classico.js.map +1 -0
- package/src/avaliador-sintatico/dialetos/index.js +14 -0
- package/src/avaliador-sintatico/dialetos/index.js.map +1 -0
- package/src/avaliador-sintatico/index.js +635 -0
- package/src/avaliador-sintatico/index.js.map +1 -0
- package/src/avaliador-sintatico/parser-error.js +27 -0
- package/src/avaliador-sintatico/parser-error.js.map +1 -0
- package/src/bibliotecas/bibliotecaGlobal.js +97 -0
- package/src/bibliotecas/bibliotecaGlobal.js.map +1 -0
- package/src/bibliotecas/importarBiblioteca.js +32 -0
- package/src/bibliotecas/importarBiblioteca.js.map +1 -0
- package/src/construtos/assign-subscript.js +35 -0
- package/src/construtos/assign-subscript.js.map +1 -0
- package/src/construtos/atribuir.js +34 -0
- package/src/construtos/atribuir.js.map +1 -0
- package/src/construtos/binario.js +35 -0
- package/src/construtos/binario.js.map +1 -0
- package/src/construtos/call.js +35 -0
- package/src/construtos/call.js.map +1 -0
- package/src/construtos/conjunto.js +35 -0
- package/src/construtos/conjunto.js.map +1 -0
- package/src/construtos/dicionario.js +34 -0
- package/src/construtos/dicionario.js.map +1 -0
- package/src/construtos/expr.js +11 -0
- package/src/construtos/expr.js.map +1 -0
- package/src/construtos/funcao.js +34 -0
- package/src/construtos/funcao.js.map +1 -0
- package/src/construtos/get.js +34 -0
- package/src/construtos/get.js.map +1 -0
- package/src/construtos/grouping.js +33 -0
- package/src/construtos/grouping.js.map +1 -0
- package/src/construtos/index.js +31 -0
- package/src/construtos/index.js.map +1 -0
- package/src/construtos/isto.js +33 -0
- package/src/construtos/isto.js.map +1 -0
- package/src/construtos/literal.js +33 -0
- package/src/construtos/literal.js.map +1 -0
- package/src/construtos/logical.js +35 -0
- package/src/construtos/logical.js.map +1 -0
- package/src/construtos/subscript.js +35 -0
- package/src/construtos/subscript.js.map +1 -0
- package/src/construtos/super.js +34 -0
- package/src/construtos/super.js.map +1 -0
- package/src/construtos/unario.js +34 -0
- package/src/construtos/unario.js.map +1 -0
- package/src/construtos/variavel.js +33 -0
- package/src/construtos/variavel.js.map +1 -0
- package/src/construtos/vetor.js +33 -0
- package/src/construtos/vetor.js.map +1 -0
- package/src/declaracoes/index.js +249 -0
- package/src/declaracoes/index.js.map +1 -0
- package/src/delegua.js +129 -0
- package/src/delegua.js.map +1 -0
- package/src/estruturas/callable.js +16 -0
- package/src/estruturas/callable.js.map +1 -0
- package/src/estruturas/classe.js +57 -0
- package/src/estruturas/classe.js.map +1 -0
- package/src/estruturas/funcao-padrao.js +38 -0
- package/src/estruturas/funcao-padrao.js.map +1 -0
- package/src/estruturas/funcao.js +81 -0
- package/src/estruturas/funcao.js.map +1 -0
- package/src/estruturas/index.js +19 -0
- package/src/estruturas/index.js.map +1 -0
- package/src/estruturas/instancia.js +28 -0
- package/src/estruturas/instancia.js.map +1 -0
- package/src/estruturas/modulo.js +15 -0
- package/src/estruturas/modulo.js.map +1 -0
- package/src/excecoes/break-exception.js +27 -0
- package/src/excecoes/break-exception.js.map +1 -0
- package/src/excecoes/continue-exception.js +27 -0
- package/src/excecoes/continue-exception.js.map +1 -0
- package/src/excecoes/erro-em-tempo-de-execucao.js +31 -0
- package/src/excecoes/erro-em-tempo-de-execucao.js.map +1 -0
- package/src/excecoes/index.js +17 -0
- package/src/excecoes/index.js.map +1 -0
- package/src/excecoes/return-exception.js +30 -0
- package/src/excecoes/return-exception.js.map +1 -0
- package/src/interfaces/avaliador-sintatico-interface.js +3 -0
- package/src/interfaces/avaliador-sintatico-interface.js.map +1 -0
- package/src/interfaces/index.js +19 -0
- package/src/interfaces/index.js.map +1 -0
- package/src/interfaces/interpretador-interface.js +3 -0
- package/src/interfaces/interpretador-interface.js.map +1 -0
- package/src/interfaces/lexador-interface.js +3 -0
- package/src/interfaces/lexador-interface.js.map +1 -0
- package/src/interfaces/pilha-interface.js +3 -0
- package/src/interfaces/pilha-interface.js.map +1 -0
- package/src/interfaces/resolvedor-interface.js +3 -0
- package/src/interfaces/resolvedor-interface.js.map +1 -0
- package/src/interfaces/simbolo-interface.js +3 -0
- package/src/interfaces/simbolo-interface.js.map +1 -0
- package/src/interpretador/dialetos/egua-classico.js +656 -0
- package/src/interpretador/dialetos/egua-classico.js.map +1 -0
- package/src/interpretador/dialetos/index.js +14 -0
- package/src/interpretador/dialetos/index.js.map +1 -0
- package/src/interpretador/index.js +665 -0
- package/src/interpretador/index.js.map +1 -0
- package/src/lexador/dialetos/egua-classico.js +287 -0
- package/src/lexador/dialetos/egua-classico.js.map +1 -0
- package/src/lexador/dialetos/index.js +14 -0
- package/src/lexador/dialetos/index.js.map +1 -0
- package/src/lexador/index.js +287 -0
- package/src/lexador/index.js.map +1 -0
- package/src/resolvedor/Pilha.js +27 -0
- package/src/resolvedor/Pilha.js.map +1 -0
- package/src/resolvedor/ResolverError.js +29 -0
- package/src/resolvedor/ResolverError.js.map +1 -0
- package/src/resolvedor/{index.ts → dialetos/egua-classico.js} +147 -228
- package/src/resolvedor/dialetos/egua-classico.js.map +1 -0
- package/src/resolvedor/dialetos/index.js +14 -0
- package/src/resolvedor/dialetos/index.js.map +1 -0
- package/src/resolvedor/{dialetos/egua-classico.ts → index.js} +147 -228
- package/src/resolvedor/index.js.map +1 -0
- package/src/{tiposDeSimbolos.ts → tiposDeSimbolos.js} +5 -2
- package/src/tiposDeSimbolos.js.map +1 -0
- package/src/web.js +66 -0
- package/src/web.js.map +1 -0
- package/.github/CONTRIBUTING.md +0 -37
- package/.github/workflows/principal.yml +0 -22
- package/.release-it.json +0 -9
- package/.vscode/launch.json +0 -64
- package/.vscode/settings.json +0 -3
- package/LICENSE +0 -21
- package/babel.config.js +0 -1
- package/index.ts +0 -29
- package/src/ambiente.ts +0 -56
- package/src/avaliador-sintatico/dialetos/egua-classico.ts +0 -983
- package/src/avaliador-sintatico/dialetos/index.ts +0 -1
- package/src/avaliador-sintatico/index.ts +0 -983
- package/src/avaliador-sintatico/parser-error.ts +0 -1
- package/src/bibliotecas/bibliotecaGlobal.ts +0 -171
- package/src/bibliotecas/importarBiblioteca.ts +0 -32
- package/src/construtos/assign-subscript.ts +0 -19
- package/src/construtos/atribuir.ts +0 -17
- package/src/construtos/binario.ts +0 -19
- package/src/construtos/call.ts +0 -19
- package/src/construtos/conjunto.ts +0 -19
- package/src/construtos/dicionario.ts +0 -17
- package/src/construtos/expr.ts +0 -3
- package/src/construtos/funcao.ts +0 -17
- package/src/construtos/get.ts +0 -17
- package/src/construtos/grouping.ts +0 -15
- package/src/construtos/index.ts +0 -18
- package/src/construtos/isto.ts +0 -15
- package/src/construtos/literal.ts +0 -15
- package/src/construtos/logical.ts +0 -19
- package/src/construtos/subscript.ts +0 -19
- package/src/construtos/super.ts +0 -17
- package/src/construtos/unario.ts +0 -17
- package/src/construtos/variavel.ts +0 -15
- package/src/construtos/vetor.ts +0 -15
- package/src/declaracoes/index.ts +0 -243
- package/src/delegua.ts +0 -156
- package/src/estruturas/callable.ts +0 -11
- package/src/estruturas/classe.ts +0 -47
- package/src/estruturas/funcao-padrao.ts +0 -22
- package/src/estruturas/funcao.ts +0 -70
- package/src/estruturas/index.ts +0 -6
- package/src/estruturas/instancia.ts +0 -30
- package/src/estruturas/modulo.ts +0 -11
- package/src/excecoes/break-exception.ts +0 -1
- package/src/excecoes/continue-exception.ts +0 -1
- package/src/excecoes/erro-em-tempo-de-execucao.ts +0 -11
- package/src/excecoes/index.ts +0 -4
- package/src/excecoes/return-exception.ts +0 -10
- package/src/interfaces/avaliador-sintatico-interface.ts +0 -58
- package/src/interfaces/index.ts +0 -6
- package/src/interfaces/interpretador-interface.ts +0 -52
- package/src/interfaces/lexador-interface.ts +0 -24
- package/src/interfaces/pilha-interface.ts +0 -7
- package/src/interfaces/resolvedor-interface.ts +0 -49
- package/src/interfaces/simbolo-interface.ts +0 -6
- package/src/interpretador/dialetos/egua-classico.ts +0 -825
- package/src/interpretador/dialetos/index.ts +0 -1
- package/src/interpretador/index.ts +0 -825
- package/src/lexador/dialetos/egua-classico.ts +0 -333
- package/src/lexador/dialetos/index.ts +0 -1
- package/src/lexador/index.ts +0 -333
- package/src/resolvedor/Pilha.ts +0 -29
- package/src/resolvedor/ResolverError.ts +0 -8
- package/src/resolvedor/dialetos/index.ts +0 -1
- package/src/web.ts +0 -75
- package/testes/testes.egua +0 -630
- package/tsconfig.json +0 -11
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Isto = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Isto = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Isto, _super);
|
|
22
|
+
function Isto(palavraChave) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.palavraChave = palavraChave;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
Isto.prototype.aceitar = function (visitor) {
|
|
28
|
+
return visitor.visitThisExpr(this);
|
|
29
|
+
};
|
|
30
|
+
return Isto;
|
|
31
|
+
}(expr_1.Expr));
|
|
32
|
+
exports.Isto = Isto;
|
|
33
|
+
//# sourceMappingURL=isto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isto.js","sourceRoot":"","sources":["../../../src/construtos/isto.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA0B,wBAAI;IAG1B,cAAY,YAAkB;QAA9B,YACI,iBAAO,SAEV;QADG,KAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;IACrC,CAAC;IAED,sBAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;IACvC,CAAC;IACL,WAAC;AAAD,CAAC,AAXD,CAA0B,WAAI,GAW7B;AAXY,oBAAI"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Literal = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Literal = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Literal, _super);
|
|
22
|
+
function Literal(valor) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.valor = valor;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
Literal.prototype.aceitar = function (visitor) {
|
|
28
|
+
return visitor.visitLiteralExpr(this);
|
|
29
|
+
};
|
|
30
|
+
return Literal;
|
|
31
|
+
}(expr_1.Expr));
|
|
32
|
+
exports.Literal = Literal;
|
|
33
|
+
//# sourceMappingURL=literal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"literal.js","sourceRoot":"","sources":["../../../src/construtos/literal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA6B,2BAAI;IAG7B,iBAAY,KAAU;QAAtB,YACI,iBAAO,SAEV;QADG,KAAI,CAAC,KAAK,GAAG,KAAK,CAAC;;IACvB,CAAC;IAED,yBAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;IACL,cAAC;AAAD,CAAC,AAXD,CAA6B,WAAI,GAWhC;AAXY,0BAAO"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Logical = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Logical = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Logical, _super);
|
|
22
|
+
function Logical(esquerda, operador, direita) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.esquerda = esquerda;
|
|
25
|
+
_this.operador = operador;
|
|
26
|
+
_this.direita = direita;
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
Logical.prototype.aceitar = function (visitor) {
|
|
30
|
+
return visitor.visitLogicalExpr(this);
|
|
31
|
+
};
|
|
32
|
+
return Logical;
|
|
33
|
+
}(expr_1.Expr));
|
|
34
|
+
exports.Logical = Logical;
|
|
35
|
+
//# sourceMappingURL=logical.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logical.js","sourceRoot":"","sources":["../../../src/construtos/logical.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA6B,2BAAI;IAK7B,iBAAY,QAAa,EAAE,QAAa,EAAE,OAAY;QAAtD,YACI,iBAAO,SAIV;QAHG,KAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,KAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IAED,yBAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;IACL,cAAC;AAAD,CAAC,AAfD,CAA6B,WAAI,GAehC;AAfY,0BAAO"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Subscript = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Subscript = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Subscript, _super);
|
|
22
|
+
function Subscript(callee, indice, closeBracket) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.callee = callee;
|
|
25
|
+
_this.indice = indice;
|
|
26
|
+
_this.closeBracket = closeBracket;
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
Subscript.prototype.aceitar = function (visitor) {
|
|
30
|
+
return visitor.visitSubscriptExpr(this);
|
|
31
|
+
};
|
|
32
|
+
return Subscript;
|
|
33
|
+
}(expr_1.Expr));
|
|
34
|
+
exports.Subscript = Subscript;
|
|
35
|
+
//# sourceMappingURL=subscript.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subscript.js","sourceRoot":"","sources":["../../../src/construtos/subscript.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA+B,6BAAI;IAK/B,mBAAY,MAAW,EAAE,MAAW,EAAE,YAAiB;QAAvD,YACI,iBAAO,SAIV;QAHG,KAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,KAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,KAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;IACrC,CAAC;IAED,2BAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;IAC5C,CAAC;IACL,gBAAC;AAAD,CAAC,AAfD,CAA+B,WAAI,GAelC;AAfY,8BAAS"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Super = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Super = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Super, _super);
|
|
22
|
+
function Super(palavraChave, metodo) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.palavraChave = palavraChave;
|
|
25
|
+
_this.metodo = metodo;
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
Super.prototype.aceitar = function (visitor) {
|
|
29
|
+
return visitor.visitSuperExpr(this);
|
|
30
|
+
};
|
|
31
|
+
return Super;
|
|
32
|
+
}(expr_1.Expr));
|
|
33
|
+
exports.Super = Super;
|
|
34
|
+
//# sourceMappingURL=super.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"super.js","sourceRoot":"","sources":["../../../src/construtos/super.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA2B,yBAAI;IAI3B,eAAY,YAAiB,EAAE,MAAW;QAA1C,YACI,iBAAO,SAGV;QAFG,KAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,KAAI,CAAC,MAAM,GAAG,MAAM,CAAC;;IACzB,CAAC;IAED,uBAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;IACL,YAAC;AAAD,CAAC,AAbD,CAA2B,WAAI,GAa9B;AAbY,sBAAK"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Unario = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Unario = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Unario, _super);
|
|
22
|
+
function Unario(operador, direita) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.operador = operador;
|
|
25
|
+
_this.direita = direita;
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
Unario.prototype.aceitar = function (visitor) {
|
|
29
|
+
return visitor.visitUnaryExpr(this);
|
|
30
|
+
};
|
|
31
|
+
return Unario;
|
|
32
|
+
}(expr_1.Expr));
|
|
33
|
+
exports.Unario = Unario;
|
|
34
|
+
//# sourceMappingURL=unario.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unario.js","sourceRoot":"","sources":["../../../src/construtos/unario.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA4B,0BAAI;IAI5B,gBAAY,QAAa,EAAE,OAAY;QAAvC,YACI,iBAAO,SAGV;QAFG,KAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IAED,wBAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;IACL,aAAC;AAAD,CAAC,AAbD,CAA4B,WAAI,GAa/B;AAbY,wBAAM"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Variavel = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Variavel = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Variavel, _super);
|
|
22
|
+
function Variavel(nome) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.nome = nome;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
Variavel.prototype.aceitar = function (visitor) {
|
|
28
|
+
return visitor.visitVariableExpr(this);
|
|
29
|
+
};
|
|
30
|
+
return Variavel;
|
|
31
|
+
}(expr_1.Expr));
|
|
32
|
+
exports.Variavel = Variavel;
|
|
33
|
+
//# sourceMappingURL=variavel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"variavel.js","sourceRoot":"","sources":["../../../src/construtos/variavel.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA8B,4BAAI;IAG9B,kBAAY,IAAS;QAArB,YACI,iBAAO,SAEV;QADG,KAAI,CAAC,IAAI,GAAG,IAAI,CAAC;;IACrB,CAAC;IAED,0BAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;IACL,eAAC;AAAD,CAAC,AAXD,CAA8B,WAAI,GAWjC;AAXY,4BAAQ"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Vetor = void 0;
|
|
19
|
+
var expr_1 = require("./expr");
|
|
20
|
+
var Vetor = /** @class */ (function (_super) {
|
|
21
|
+
__extends(Vetor, _super);
|
|
22
|
+
function Vetor(valores) {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this.valores = valores;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
Vetor.prototype.aceitar = function (visitor) {
|
|
28
|
+
return visitor.visitArrayExpr(this);
|
|
29
|
+
};
|
|
30
|
+
return Vetor;
|
|
31
|
+
}(expr_1.Expr));
|
|
32
|
+
exports.Vetor = Vetor;
|
|
33
|
+
//# sourceMappingURL=vetor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vetor.js","sourceRoot":"","sources":["../../../src/construtos/vetor.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAG9B;IAA2B,yBAAI;IAG3B,eAAY,OAAY;QAAxB,YACI,iBAAO,SAEV;QADG,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IAED,uBAAO,GAAP,UAAQ,OAAY;QAChB,OAAO,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;IACL,YAAC;AAAD,CAAC,AAXD,CAA2B,WAAI,GAW9B;AAXY,sBAAK"}
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.Var = exports.Continua = exports.Pausa = exports.Escolha = exports.Se = exports.Tente = exports.Para = exports.Enquanto = exports.Fazer = exports.Importar = exports.Escreva = exports.Block = exports.Classe = exports.Retorna = exports.Funcao = exports.Expressao = exports.Stmt = void 0;
|
|
19
|
+
var Stmt = /** @class */ (function () {
|
|
20
|
+
function Stmt() {
|
|
21
|
+
}
|
|
22
|
+
Stmt.prototype.aceitar = function (visitor) { };
|
|
23
|
+
return Stmt;
|
|
24
|
+
}());
|
|
25
|
+
exports.Stmt = Stmt;
|
|
26
|
+
var Expressao = /** @class */ (function (_super) {
|
|
27
|
+
__extends(Expressao, _super);
|
|
28
|
+
function Expressao(expressao) {
|
|
29
|
+
var _this = _super.call(this) || this;
|
|
30
|
+
_this.expressao = expressao;
|
|
31
|
+
return _this;
|
|
32
|
+
}
|
|
33
|
+
Expressao.prototype.aceitar = function (visitor) {
|
|
34
|
+
return visitor.visitExpressionStmt(this);
|
|
35
|
+
};
|
|
36
|
+
return Expressao;
|
|
37
|
+
}(Stmt));
|
|
38
|
+
exports.Expressao = Expressao;
|
|
39
|
+
var Funcao = /** @class */ (function (_super) {
|
|
40
|
+
__extends(Funcao, _super);
|
|
41
|
+
function Funcao(nome, funcao) {
|
|
42
|
+
var _this = _super.call(this) || this;
|
|
43
|
+
_this.nome = nome;
|
|
44
|
+
_this.funcao = funcao;
|
|
45
|
+
return _this;
|
|
46
|
+
}
|
|
47
|
+
Funcao.prototype.aceitar = function (visitor) {
|
|
48
|
+
return visitor.visitFunctionStmt(this);
|
|
49
|
+
};
|
|
50
|
+
return Funcao;
|
|
51
|
+
}(Stmt));
|
|
52
|
+
exports.Funcao = Funcao;
|
|
53
|
+
var Retorna = /** @class */ (function (_super) {
|
|
54
|
+
__extends(Retorna, _super);
|
|
55
|
+
function Retorna(palavraChave, valor) {
|
|
56
|
+
var _this = _super.call(this) || this;
|
|
57
|
+
_this.palavraChave = palavraChave;
|
|
58
|
+
_this.valor = valor;
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
Retorna.prototype.aceitar = function (visitor) {
|
|
62
|
+
return visitor.visitReturnStmt(this);
|
|
63
|
+
};
|
|
64
|
+
return Retorna;
|
|
65
|
+
}(Stmt));
|
|
66
|
+
exports.Retorna = Retorna;
|
|
67
|
+
var Classe = /** @class */ (function (_super) {
|
|
68
|
+
__extends(Classe, _super);
|
|
69
|
+
function Classe(nome, superClasse, metodos) {
|
|
70
|
+
var _this = _super.call(this) || this;
|
|
71
|
+
_this.nome = nome;
|
|
72
|
+
_this.superClasse = superClasse;
|
|
73
|
+
_this.metodos = metodos;
|
|
74
|
+
return _this;
|
|
75
|
+
}
|
|
76
|
+
Classe.prototype.aceitar = function (visitor) {
|
|
77
|
+
return visitor.visitClassStmt(this);
|
|
78
|
+
};
|
|
79
|
+
return Classe;
|
|
80
|
+
}(Stmt));
|
|
81
|
+
exports.Classe = Classe;
|
|
82
|
+
var Block = /** @class */ (function (_super) {
|
|
83
|
+
__extends(Block, _super);
|
|
84
|
+
function Block(declaracoes) {
|
|
85
|
+
var _this = _super.call(this) || this;
|
|
86
|
+
_this.declaracoes = declaracoes;
|
|
87
|
+
return _this;
|
|
88
|
+
}
|
|
89
|
+
Block.prototype.aceitar = function (visitor) {
|
|
90
|
+
return visitor.visitBlockStmt(this);
|
|
91
|
+
};
|
|
92
|
+
return Block;
|
|
93
|
+
}(Stmt));
|
|
94
|
+
exports.Block = Block;
|
|
95
|
+
var Escreva = /** @class */ (function (_super) {
|
|
96
|
+
__extends(Escreva, _super);
|
|
97
|
+
function Escreva(expressao) {
|
|
98
|
+
var _this = _super.call(this) || this;
|
|
99
|
+
_this.expressao = expressao;
|
|
100
|
+
return _this;
|
|
101
|
+
}
|
|
102
|
+
Escreva.prototype.aceitar = function (visitor) {
|
|
103
|
+
return visitor.visitPrintStmt(this);
|
|
104
|
+
};
|
|
105
|
+
return Escreva;
|
|
106
|
+
}(Stmt));
|
|
107
|
+
exports.Escreva = Escreva;
|
|
108
|
+
var Importar = /** @class */ (function (_super) {
|
|
109
|
+
__extends(Importar, _super);
|
|
110
|
+
function Importar(caminho, closeBracket) {
|
|
111
|
+
var _this = _super.call(this) || this;
|
|
112
|
+
_this.caminho = caminho;
|
|
113
|
+
_this.closeBracket = closeBracket;
|
|
114
|
+
return _this;
|
|
115
|
+
}
|
|
116
|
+
Importar.prototype.aceitar = function (visitor) {
|
|
117
|
+
return visitor.visitImportStmt(this);
|
|
118
|
+
};
|
|
119
|
+
return Importar;
|
|
120
|
+
}(Stmt));
|
|
121
|
+
exports.Importar = Importar;
|
|
122
|
+
var Fazer = /** @class */ (function (_super) {
|
|
123
|
+
__extends(Fazer, _super);
|
|
124
|
+
function Fazer(doBranch, whileCondition) {
|
|
125
|
+
var _this = _super.call(this) || this;
|
|
126
|
+
_this.doBranch = doBranch;
|
|
127
|
+
_this.whileCondition = whileCondition;
|
|
128
|
+
return _this;
|
|
129
|
+
}
|
|
130
|
+
Fazer.prototype.aceitar = function (visitor) {
|
|
131
|
+
return visitor.visitDoStmt(this);
|
|
132
|
+
};
|
|
133
|
+
return Fazer;
|
|
134
|
+
}(Stmt));
|
|
135
|
+
exports.Fazer = Fazer;
|
|
136
|
+
var Enquanto = /** @class */ (function (_super) {
|
|
137
|
+
__extends(Enquanto, _super);
|
|
138
|
+
function Enquanto(condicao, corpo) {
|
|
139
|
+
var _this = _super.call(this) || this;
|
|
140
|
+
_this.condicao = condicao;
|
|
141
|
+
_this.corpo = corpo;
|
|
142
|
+
return _this;
|
|
143
|
+
}
|
|
144
|
+
Enquanto.prototype.aceitar = function (visitor) {
|
|
145
|
+
return visitor.visitWhileStmt(this);
|
|
146
|
+
};
|
|
147
|
+
return Enquanto;
|
|
148
|
+
}(Stmt));
|
|
149
|
+
exports.Enquanto = Enquanto;
|
|
150
|
+
var Para = /** @class */ (function (_super) {
|
|
151
|
+
__extends(Para, _super);
|
|
152
|
+
function Para(inicializador, condicao, incrementar, corpo) {
|
|
153
|
+
var _this = _super.call(this) || this;
|
|
154
|
+
_this.inicializador = inicializador;
|
|
155
|
+
_this.condicao = condicao;
|
|
156
|
+
_this.incrementar = incrementar;
|
|
157
|
+
_this.corpo = corpo;
|
|
158
|
+
return _this;
|
|
159
|
+
}
|
|
160
|
+
Para.prototype.aceitar = function (visitor) {
|
|
161
|
+
return visitor.visitForStmt(this);
|
|
162
|
+
};
|
|
163
|
+
return Para;
|
|
164
|
+
}(Stmt));
|
|
165
|
+
exports.Para = Para;
|
|
166
|
+
var Tente = /** @class */ (function (_super) {
|
|
167
|
+
__extends(Tente, _super);
|
|
168
|
+
function Tente(tryBranch, catchBranch, elseBranch, finallyBranch) {
|
|
169
|
+
var _this = _super.call(this) || this;
|
|
170
|
+
_this.tryBranch = tryBranch;
|
|
171
|
+
_this.catchBranch = catchBranch;
|
|
172
|
+
_this.elseBranch = elseBranch;
|
|
173
|
+
_this.finallyBranch = finallyBranch;
|
|
174
|
+
return _this;
|
|
175
|
+
}
|
|
176
|
+
Tente.prototype.aceitar = function (visitor) {
|
|
177
|
+
return visitor.visitTryStmt(this);
|
|
178
|
+
};
|
|
179
|
+
return Tente;
|
|
180
|
+
}(Stmt));
|
|
181
|
+
exports.Tente = Tente;
|
|
182
|
+
var Se = /** @class */ (function (_super) {
|
|
183
|
+
__extends(Se, _super);
|
|
184
|
+
function Se(condicao, thenBranch, elifBranches, elseBranch) {
|
|
185
|
+
var _this = _super.call(this) || this;
|
|
186
|
+
_this.condicao = condicao;
|
|
187
|
+
_this.thenBranch = thenBranch;
|
|
188
|
+
_this.elifBranches = elifBranches;
|
|
189
|
+
_this.elseBranch = elseBranch;
|
|
190
|
+
return _this;
|
|
191
|
+
}
|
|
192
|
+
Se.prototype.aceitar = function (visitor) {
|
|
193
|
+
return visitor.visitIfStmt(this);
|
|
194
|
+
};
|
|
195
|
+
return Se;
|
|
196
|
+
}(Stmt));
|
|
197
|
+
exports.Se = Se;
|
|
198
|
+
var Escolha = /** @class */ (function (_super) {
|
|
199
|
+
__extends(Escolha, _super);
|
|
200
|
+
function Escolha(condicao, branches, defaultBranch) {
|
|
201
|
+
var _this = _super.call(this) || this;
|
|
202
|
+
_this.condicao = condicao;
|
|
203
|
+
_this.branches = branches;
|
|
204
|
+
_this.defaultBranch = defaultBranch;
|
|
205
|
+
return _this;
|
|
206
|
+
}
|
|
207
|
+
Escolha.prototype.aceitar = function (visitor) {
|
|
208
|
+
return visitor.visitSwitchStmt(this);
|
|
209
|
+
};
|
|
210
|
+
return Escolha;
|
|
211
|
+
}(Stmt));
|
|
212
|
+
exports.Escolha = Escolha;
|
|
213
|
+
var Pausa = /** @class */ (function (_super) {
|
|
214
|
+
__extends(Pausa, _super);
|
|
215
|
+
function Pausa() {
|
|
216
|
+
return _super.call(this) || this;
|
|
217
|
+
}
|
|
218
|
+
Pausa.prototype.aceitar = function (visitor) {
|
|
219
|
+
return visitor.visitBreakStmt(this);
|
|
220
|
+
};
|
|
221
|
+
return Pausa;
|
|
222
|
+
}(Stmt));
|
|
223
|
+
exports.Pausa = Pausa;
|
|
224
|
+
var Continua = /** @class */ (function (_super) {
|
|
225
|
+
__extends(Continua, _super);
|
|
226
|
+
function Continua() {
|
|
227
|
+
return _super.call(this) || this;
|
|
228
|
+
}
|
|
229
|
+
Continua.prototype.aceitar = function (visitor) {
|
|
230
|
+
return visitor.visitContinueStmt(this);
|
|
231
|
+
};
|
|
232
|
+
return Continua;
|
|
233
|
+
}(Stmt));
|
|
234
|
+
exports.Continua = Continua;
|
|
235
|
+
var Var = /** @class */ (function (_super) {
|
|
236
|
+
__extends(Var, _super);
|
|
237
|
+
function Var(nome, inicializador) {
|
|
238
|
+
var _this = _super.call(this) || this;
|
|
239
|
+
_this.nome = nome;
|
|
240
|
+
_this.inicializador = inicializador;
|
|
241
|
+
return _this;
|
|
242
|
+
}
|
|
243
|
+
Var.prototype.aceitar = function (visitor) {
|
|
244
|
+
return visitor.visitVarStmt(this);
|
|
245
|
+
};
|
|
246
|
+
return Var;
|
|
247
|
+
}(Stmt));
|
|
248
|
+
exports.Var = Var;
|
|
249
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/declaracoes/index.ts"],"names":[],"mappings":"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"}
|