* [Bindable]; b) not function locals; c) not overriden by explicit [Bindable(..)] metadata; d) ok according to
* checkBindableVariable().
*/
public Value evaluate(Context context, VariableDefinitionNode node)
{
QName qname = new QName(NodeMagic.getUserNamespace(node), NodeMagic.getVariableName(node));
if (inBindableClass() &&
!inFunction &&
!isBindableAccessor(qname) &&
checkBindableVariable(context, node, true, true))
{