18 lines
241 B
Plaintext
18 lines
241 B
Plaintext
%{
|
|
class browserparser {
|
|
%}
|
|
%token NUM
|
|
%token PLS
|
|
%token MIN
|
|
%token MUL
|
|
%token DIV
|
|
%token BROP
|
|
%token BRCL
|
|
|
|
%%
|
|
S : Exp Op Exp | BROP Exp Op Exp BRCL { }
|
|
Num : NUM | BROP MIN NUM BRCL { }
|
|
Exp : S | Num { }
|
|
Op : PLS | MIN | MUL | DIV { }
|
|
%%
|
|
} |