/**
  * Resolve completion node if not null and throw exception to let clients know that it has been
  * found.
  *
  * @throws CompletionNodeFound
  */
 public void resolve(MethodScope scope) {
   super.resolve(scope);
   internalResolve(scope);
 }
 /**
  * Resolve completion node if not null and throw exception to let clients know that it has been
  * found.
  *
  * @throws CompletionNodeFound
  */
 public void resolve(ClassScope scope) {
   super.resolve(scope);
   internalResolve(scope);
 }