public Integer handleExpression(ASTExpression node) {
   Integer value = (Integer) node.jjtGetChild(0).jjtAccept(this, null);
   return value;
 }