summaryrefslogtreecommitdiffstats
path: root/tp2-files/Calculatrice.jj
blob: 377cac2bf65ef5a1397c59ec51543437ed623323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Options pour JavaCC
options { LOOKAHEAD=1; FORCE_LA_CHECK=true; }

// Fonction principale
PARSER_BEGIN(Calculatrice)
public class Calculatrice
{
    public static void main(String args[]) throws ParseException 
    {
        Calculatrice parser = new Calculatrice(System.in);
        parser.mainloop();
    }
}
PARSER_END(Calculatrice)

// Caractères à ignorer (espaces)
SKIP: { " " | "\r" | "\t" }

// Définitions pour le lexeur
TOKEN:
{
    < NUMBER: (<DIGIT>)+ ("." (<DIGIT>)*)? >  // Un nombre en décimal
|   < DIGIT: ["0"-"9"] >  // Un chiffre
|   < EOL: "\n" >  // Fin de ligne
}

// Boucle principale: lire des expressions sur une ligne jusqu'à fin de fichier
//     mainloop → (expression <EOL>)* <EOF>
// (<EOL> est défini ci-dessus, <EOF> est reconnu automatiquement)
void mainloop():
{ double a; }
{
    (
      a=expression() <EOL> { System.out.println(a); }
    )*
    <EOF>
}

// Expression (axiome de la grammaire de la calculatrice)
//     expression → element ( "+" element | "-" element | "*" element | "/" element )*
double expression():
{ double a,b; }
{
    a=element()
    (
      "+" b=element() { a += b; }
    | "-" b=element() { a -= b; }
    | "*" b=element() { a *= b; }
    | "/" b=element() { a /= b; }
    )* { return a; }
}

// Élément d'un calcul
double element():
{ Token t; }
{
    t=<NUMBER> { return Double.parseDouble(t.toString()); }
}