Adding variable information on errors

This commit is contained in:
Anthony Debucquoy 2025-03-22 23:06:41 +01:00
parent a22bc69491
commit 102f08c2cf
Signed by: tonitch
GPG Key ID: A78D6421F083D42E
3 changed files with 14 additions and 6 deletions

View File

@ -15,3 +15,11 @@ afficher l;
# afficher x + 3, 3 + y; # afficher x + 3, 3 + y;
# x = -x; # x = -x;
# afficher x; # afficher x;
# entier x = 2 + 3 * 4;
# entier y = 3 * 4 + 2;
liste l = [1, 2, 3];
afficher l[2];

View File

@ -3,13 +3,13 @@ entier age = 23;
booléen majeur = vrai; booléen majeur = vrai;
booléen ingénieur; booléen ingénieur;
majeur = faux; majeur = faux;
afficher nom, age, majeur; afficher nom, age, majeur;
#Ces lignes devraient donner une erreur # Ces lignes devraient donner une erreur
# majeur = 42; # majeur = 42;
# afficher majeur; # afficher majeur;

View File

@ -14,11 +14,11 @@ class Variables:
def __init__(self, typ, value = None): def __init__(self, typ, value = None):
assert typ in self.types.keys(), "Ce type de variable est inconnu" assert typ in self.types.keys(), "Ce type de variable est inconnu"
self.type = typ self.type = typ
assert self.checkType(value, typ), "Le type n'est pas équivalent" assert self.checkType(value, typ), f"Le type n'est pas équivalent: { value } n'est pas {typ}"
self.value = value if (value is not None) else self.default(typ) self.value = value if (value is not None) else self.default(typ)
def set(self, value): def set(self, value):
assert self.checkType(value, self.type), "Le type n'est pas équivalent" assert self.checkType(value, self.type), f"Le type n'est pas équivalent: {value} n'est pas {self.type}"
self.value = value self.value = value
def __str__(self): def __str__(self):
@ -61,7 +61,7 @@ class Variables:
print(f"{trace_format}déclare {name} = {value}{reset_format}", file=sys.stderr) print(f"{trace_format}déclare {name} = {value}{reset_format}", file=sys.stderr)
def assign(self, name, value): def assign(self, name, value):
assert name in self.variables, f"la variable n'éxiste pas" assert name in self.variables, f"la variable {name} n'éxiste pas"
self.variables[name].set(value) self.variables[name].set(value)
if self.trace: if self.trace:
print(f"{trace_format}modifie {name} = {value}{reset_format}", file=sys.stderr) print(f"{trace_format}modifie {name} = {value}{reset_format}", file=sys.stderr)