private Suggestion matchExp(PExp exp, PExpNavigator sourceNavigator) {
    Suggestion retval = null;

    if (myMatcher.couldReplace(exp)) {
      retval =
          new Suggestion(
              myCurConjunctIndex, sourceNavigator.replaceLast(myMatcher.getReplacement()));
    }

    return retval;
  }