mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
examples/java/calc/Calc.java:1531: warning: [deprecation] Integer(String) in Integer has been deprecated
yylval = new Integer(st.sval);
^
* examples/java/calc/Calc.y, examples/java/simple/Calc.y,
* tests/calc.at, tests/scanner.at: Use Integer.parseInt.
Examples in Java
This directory contains examples of Bison grammar files in Java.
You can run make to compile these examples. And make clean to tidy
afterwards.
simple/Calc.y
The usual calculator, a very simple version.
calc/Calc.y
The calculator, but with location tracking, debug traces, and a push parser.