continue;
}
MethodMatcher.MethodMatchParameter matchParameter = MethodMatcher.getMatchedSignatureWithDepth(psiNearestParameter, new MethodMatcher.CallToSignature[]{new MethodMatcher.CallToSignature(config.getCallTo(), config.getMethodName())}, config.getIndexParameter());
if(matchParameter != null) {
AssistantReferenceContributor referenceContributor = AssistantReferenceUtil.getContributor(config);
if(referenceContributor != null && referenceContributor.isContributedElement(psiElement, config)) {
Collections.addAll(psiReferences, AssistantReferenceUtil.getPsiReference(config, (StringLiteralExpression) psiElement, methodScopeConfigs, method));
}
}
}