Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- grammar Calculator;
- NL : '\n';
- WS : [ \t\r]+ -> skip;
- ID : [a-zA-Z_][a-zA-Z_0-9]*;
- PLUS : '+';
- EQUAL : '=';
- MINUS : '-';
- MULT : '*';
- DIV : '/';
- LPAR : '(';
- RPAR : ')';
- input
- plusOrMinus NL? EOF # Calculate
- ;
- plusOrMinus
- : plusOrMinus PLUS multOrDiv # Plus
- | plusOrMinus MINUS multOrDiv # Minus
- | multOrDiv # ToMultOrDiv
- ;
- multOrDiv
- : multOrDiv MULT atom # Multiplication
- | multOrDiv DIV atom # Division
- | atom # ToPow
- ;
- atom
- | ID # Variable
- | LPAR plusOrMinus RPAR # Braces
- ;
Advertisement
Add Comment
Please, Sign In to add comment