* NEWS (2.5): Document it.
* tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
invocations, pass a location that spans multiple tokens. Change
yyerror to report all of a location rather than just the begin
position. Extend yylex and Position to count tokens on a line.
Remove getHashCode as it's unused. Update all expected output.
+2011-02-19 Joel E. Denny <joeldenny@joeldenny.org>
+
+ java: test and document previous bug fix.
+ * NEWS (2.5): Document it.
+ * tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
+ invocations, pass a location that spans multiple tokens. Change
+ yyerror to report all of a location rather than just the begin
+ position. Extend yylex and Position to count tokens on a line.
+ Remove getHashCode as it's unused. Update all expected output.
+
2011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
java: fix location handling bug.
2011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
java: fix location handling bug.
canonical LR. However, LAC is still experimental and is disabled
by default.
canonical LR. However, LAC is still experimental and is disabled
by default.
+** A location handling bug in the Java skeleton has been fixed.
+
* Changes in version 2.4.3 (2010-08-05):
** Bison now obeys -Werror and --warnings=error for warnings about
* Changes in version 2.4.3 (2010-08-05):
** Bison now obeys -Werror and --warnings=error for warnings about
| exp '=' exp
{
if ($1.intValue () != $3.intValue ())
| exp '=' exp
{
if ($1.intValue () != $3.intValue ())
- yyerror ("calc: error: " + $1 + " != " + $3);
+ yyerror (]AT_LOCATION_IF([[@$,]])[ "calc: error: " + $1 + " != " + $3);
}
| exp '+' exp { $$ = new Integer ($1.intValue () + $3.intValue ()); }
| exp '-' exp { $$ = new Integer ($1.intValue () - $3.intValue ()); }
}
| exp '+' exp { $$ = new Integer ($1.intValue () + $3.intValue ()); }
| exp '-' exp { $$ = new Integer ($1.intValue () - $3.intValue ()); }
- Position yystartpos;
- Position yyendpos = new Position (1);
+ Position yypos = new Position (1, 0);
public Position getStartPos() {
public Position getStartPos() {
}
public Position getEndPos() {
}
public Position getEndPos() {
}
public void yyerror (Calc.Location l, String s)
}
public void yyerror (Calc.Location l, String s)
if (l == null)
System.err.println (s);
else
if (l == null)
System.err.println (s);
else
- System.err.println (l.begin + ": " + s);
+ System.err.println (l + ": " + s);
}
]], [[
public void yyerror (String s)
}
]], [[
public void yyerror (String s)
public int yylex () throws IOException {
int ttype = st.nextToken ();
public int yylex () throws IOException {
int ttype = st.nextToken ();
- ]AT_LOCATION_IF([[yystartpos = yyendpos;]])[
+ ]AT_LOCATION_IF([[yypos = new Position (yypos.lineno (),
+ yypos.token () + 1);]])[
if (ttype == st.TT_EOF)
return Calc.EOF;
else if (ttype == st.TT_EOL)
{
if (ttype == st.TT_EOF)
return Calc.EOF;
else if (ttype == st.TT_EOL)
{
- ]AT_LOCATION_IF([[yyendpos = new Position (yyendpos.lineno () + 1);]])[
+ ]AT_LOCATION_IF([[yypos = new Position (yypos.lineno () + 1, 0);]])[
[
class Position {
public int line;
[
class Position {
public int line;
public Position ()
{
line = 0;
public Position ()
{
line = 0;
- public Position (int l)
+ public Position (int l, int t)
- }
-
- public long getHashCode ()
- {
- return line;
}
public boolean equals (Position l)
{
}
public boolean equals (Position l)
{
+ return l.line == line && l.token == token;
}
public String toString ()
{
}
public String toString ()
{
- return Integer.toString (line);
+ return Integer.toString (line) + "." + Integer.toString(token);
}
public int lineno ()
{
return line;
}
}
public int lineno ()
{
return line;
}
+
+ public int token ()
+ {
+ return token;
+ }
# Some syntax errors.
_AT_CHECK_JAVA_CALC_ERROR([$1], [0 0],
# Some syntax errors.
_AT_CHECK_JAVA_CALC_ERROR([$1], [0 0],
- [1: syntax error, unexpected number])
+ [1.2: syntax error, unexpected number])
_AT_CHECK_JAVA_CALC_ERROR([$1], [1//2],
_AT_CHECK_JAVA_CALC_ERROR([$1], [1//2],
- [1: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
+ [1.3: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
_AT_CHECK_JAVA_CALC_ERROR([$1], [error],
_AT_CHECK_JAVA_CALC_ERROR([$1], [error],
- [1: syntax error, unexpected $undefined])
+ [1.1: syntax error, unexpected $undefined])
_AT_CHECK_JAVA_CALC_ERROR([$1], [1 = 2 = 3],
_AT_CHECK_JAVA_CALC_ERROR([$1], [1 = 2 = 3],
- [1: syntax error, unexpected '='])
+ [1.4: syntax error, unexpected '='])
_AT_CHECK_JAVA_CALC_ERROR([$1], [
+1],
_AT_CHECK_JAVA_CALC_ERROR([$1], [
+1],
- [2: syntax error, unexpected '+'])
+ [2.1: syntax error, unexpected '+'])
# Exercise error messages with EOF: work on an empty file.
_AT_CHECK_JAVA_CALC_ERROR([$1], [/dev/null],
# Exercise error messages with EOF: work on an empty file.
_AT_CHECK_JAVA_CALC_ERROR([$1], [/dev/null],
- [1: syntax error, unexpected end of input])
+ [1.1: syntax error, unexpected end of input])
# Exercise the error token: without it, we die at the first error,
# hence be sure to
# Exercise the error token: without it, we die at the first error,
# hence be sure to
#
_AT_CHECK_JAVA_CALC_ERROR([$1],
[() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
#
_AT_CHECK_JAVA_CALC_ERROR([$1],
[() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
-[1: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
-1: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
-1: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
-1: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
-calc: error: 4444 != 1])
+[1.2: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
+1.11: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
+1.14: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
+1.24: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
+1.1-1.27: calc: error: 4444 != 1])
# The same, but this time exercising explicitly triggered syntax errors.
# POSIX says the lookahead causing the error should not be discarded.
_AT_CHECK_JAVA_CALC_ERROR([$1], [(!) + (0 0) = 1],
# The same, but this time exercising explicitly triggered syntax errors.
# POSIX says the lookahead causing the error should not be discarded.
_AT_CHECK_JAVA_CALC_ERROR([$1], [(!) + (0 0) = 1],
-[1: syntax error, unexpected number
-calc: error: 2222 != 1])
+[1.7: syntax error, unexpected number
+1.1-1.10: calc: error: 2222 != 1])
_AT_CHECK_JAVA_CALC_ERROR([$1], [(- *) + (0 0) = 1],
_AT_CHECK_JAVA_CALC_ERROR([$1], [(- *) + (0 0) = 1],
-[1: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
-1: syntax error, unexpected number
-calc: error: 2222 != 1])
+[1.3: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
+1.8: syntax error, unexpected number
+1.1-1.11: calc: error: 2222 != 1])
AT_BISON_OPTION_POPDEFS
AT_CLEANUP
AT_BISON_OPTION_POPDEFS
AT_CLEANUP