/*
  * @see edu.berkeley.eduride.isa.corext.dom.GenericVisitor#visit(org.eclipse.jdt.core.dom.ConstructorInvocation)
  * @since 3.5
  */
 public boolean visit(SuperConstructorInvocation node) {
   // XXX Hack for performance reasons (should loop over fJobSemanticHighlightings can call
   // consumes(*))
   if (fJobDeprecatedMemberHighlighting != null) {
     IMethodBinding constructorBinding = node.resolveConstructorBinding();
     if (constructorBinding != null && constructorBinding.isDeprecated()) {
       int offset = node.getStartPosition();
       int length = 5;
       if (offset > -1 && length > 0)
         addPosition(offset, length, fJobDeprecatedMemberHighlighting);
     }
   }
   return true;
 }