if(null == val)
throw new TransformerException("Variable accessed before it is bound!", xctxt.getSAXLocator());
// Lazy execution of variables.
if (val.getType() == XObject.CLASS_UNRESOLVEDVARIABLE)
return (_sf[index] = val.execute(xctxt));
return val;
}
/**