Menu

#273 Variables not named in error messages

v8.2
closed
5
2012-10-08
2004-12-22
Michael Kay
No

An error message concerned with the type of a variable
does not identify the variable by name, but rather by
its internal numeric name code.

Source Fix: in net.sf.saxon.expr.RoleLocator, change
line 75 from

return "value of variable $" + container;

to

return "value of variable $" + name;

Discussion