Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
leonelsanchesdasilva committed Nov 28, 2024
1 parent 0fd19c4 commit c01b1e8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion delegua.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ var DeleguaWeb = /** @class */ (function () {
});
};
DeleguaWeb.prototype.versao = function () {
return "0.35";
return "0.37";
};
DeleguaWeb.prototype.reportar = function (linha, onde, mensagem) {
if (this.nomeArquivo)
Expand Down
2 changes: 1 addition & 1 deletion editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var executarTradutor = function () {
var funcoes = {
"python": { tradutor: delegua.tradutorPython, linguagem: "python" },
"javascript": { tradutor: delegua.tradutorJavascript, linguagem: "javascript" },
"assemblyscript": { tradutor: delegua.tradutorAssemblyScript, linguagem: "typescript" },
// "assemblyscript": { tradutor: delegua.tradutorAssemblyScript, linguagem: "typescript" },
};
if (codigo[0]) {
var retornoLexador = delegua.lexador.mapear(codigo, -1);
Expand Down
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<select id="linguagem">
<option selected>JavaScript</option>
<option>Python</option>
<option>AssemblyScript</option>
</select>
<div>
<button id="botaoTraduzir" title="Traduzir">
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ var DeleguaWeb = /** @class */ (function () {
});
};
DeleguaWeb.prototype.versao = function () {
return "0.35";
return "0.37";
};
DeleguaWeb.prototype.reportar = function (linha, onde, mensagem) {
if (this.nomeArquivo)
Expand Down

0 comments on commit c01b1e8

Please sign in to comment.