@Override
public void caseAVariable(AVariable node) {
this.attributeName = new VariableName(node.getVariablename().getText());
this.value = AnyNode.ANY_NODE;
try {
this.expression = new SingleValue(getSingleAvp());
} catch (ParserException e) {
this.exception = e;
}
}