summaryrefslogtreecommitdiffstats
path: root/tp2-files/Calculatrice-final.jj
diff options
context:
space:
mode:
Diffstat (limited to 'tp2-files/Calculatrice-final.jj')
-rw-r--r--tp2-files/Calculatrice-final.jj6
1 files changed, 3 insertions, 3 deletions
diff --git a/tp2-files/Calculatrice-final.jj b/tp2-files/Calculatrice-final.jj
index a7ea9f0..889659c 100644
--- a/tp2-files/Calculatrice-final.jj
+++ b/tp2-files/Calculatrice-final.jj
@@ -48,7 +48,7 @@ double expression():
)* { return a; }
}
-// Term d'une somme ou différence
+// Terme d'une somme ou différence
// term → factor ( "*" factor | "/" factor )*
double term():
{ double a,b; }
@@ -60,7 +60,7 @@ double term():
)* { return a; }
}
-// Gestion du "+" et "−" factors
+// Gestion du "+" et "−" unaires
// factor → power | "+" power | "-" power
double factor():
{ double a; }
@@ -70,7 +70,7 @@ double factor():
| "-" a=power() { return -a; }
}
-// Opération power (associative à droite)
+// Opération puissance (associative à droite)
// power → element ( "^" factor )?
double power():
{ double a,b; }