mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-16 07:43:03 +00:00
java: fix location handling bug.
Reported at
<http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
* data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
reversed access to location stack.
* THANKS (Bernd Kiefer): Add.
(cherry picked from commit 8db68289d1)
This commit is contained in:
committed by
Joel E. Denny
parent
8407249529
commit
aa3bcdf35e
@@ -1,3 +1,12 @@
|
|||||||
|
2011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
|
||||||
|
|
||||||
|
java: fix location handling bug.
|
||||||
|
Reported at
|
||||||
|
<http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
|
||||||
|
* data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
|
||||||
|
reversed access to location stack.
|
||||||
|
* THANKS (Bernd Kiefer): Add.
|
||||||
|
|
||||||
2011-02-13 Joel E. Denny <joeldenny@joeldenny.org>
|
2011-02-13 Joel E. Denny <joeldenny@joeldenny.org>
|
||||||
|
|
||||||
doc: fix some minor inconsistencies.
|
doc: fix some minor inconsistencies.
|
||||||
|
|||||||
1
THANKS
1
THANKS
@@ -13,6 +13,7 @@ Arnold Robbins arnold@skeeve.com
|
|||||||
Art Haas ahaas@neosoft.com
|
Art Haas ahaas@neosoft.com
|
||||||
Baron Schwartz baron@sequent.org
|
Baron Schwartz baron@sequent.org
|
||||||
Benoit Perrot benoit.perrot@epita.fr
|
Benoit Perrot benoit.perrot@epita.fr
|
||||||
|
Bernd Kiefer kiefer@dfki.de
|
||||||
Bert Deknuydt Bert.Deknuydt@esat.kuleuven.ac.be
|
Bert Deknuydt Bert.Deknuydt@esat.kuleuven.ac.be
|
||||||
Bill Allombert Bill.Allombert@math.u-bordeaux1.fr
|
Bill Allombert Bill.Allombert@math.u-bordeaux1.fr
|
||||||
Bob Rossi bob@brasko.net
|
Bob Rossi bob@brasko.net
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ b4_locations_if([[
|
|||||||
private ]b4_location_type[ yylloc (YYStack rhs, int n)
|
private ]b4_location_type[ yylloc (YYStack rhs, int n)
|
||||||
{
|
{
|
||||||
if (n > 0)
|
if (n > 0)
|
||||||
return new ]b4_location_type[ (rhs.locationAt (1).begin, rhs.locationAt (n).end);
|
return new ]b4_location_type[ (rhs.locationAt (n-1).begin, rhs.locationAt (0).end);
|
||||||
else
|
else
|
||||||
return new ]b4_location_type[ (rhs.locationAt (0).end);
|
return new ]b4_location_type[ (rhs.locationAt (0).end);
|
||||||
}]])[
|
}]])[
|
||||||
|
|||||||
Reference in New Issue
Block a user