Rename mapPos to endpos, there is no longer an end position map

This commit is contained in:
Liam Miller-Cushon 2026-01-26 17:39:46 +01:00
parent 3432b13996
commit e217e5f3b3

View File

@ -650,9 +650,9 @@ public class TreeInfo {
if (tree == null)
return Position.NOPOS;
int mapPos = tree.endpos;
if (mapPos != Position.NOPOS)
return mapPos;
int endpos = tree.endpos;
if (endpos != Position.NOPOS)
return endpos;
switch(tree.getTag()) {
case BITOR_ASG: case BITXOR_ASG: case BITAND_ASG: