Skip to content

Commit

Permalink
Evitar erros de código relacionados a variáveis não declaradas
Browse files Browse the repository at this point in the history
  • Loading branch information
dgadelha committed Aug 10, 2023
1 parent 12aa823 commit 2b924c9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/runtime/src/runtime/PortugolRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,18 @@ class PortugolRuntime {
assign(args) {
let initial = args.shift();
if (typeof initial === "undefined") {
throw new Error("Não é possível atribuir valor à uma variável não declarada");
}
while (args.length) {
const arg = args.pop();
console.log("assign", { initial, arg });
if (typeof arg === "undefined") {
throw new Error("Não é possível atribuir uma variável não declarada a uma variável declarada");
}
if (initial.type === "vazio") {
throw new Error("Não é possível atribuir valor ao tipo vazio");
}
Expand Down

0 comments on commit 2b924c9

Please sign in to comment.