use of com.intellij.compiler.backwardRefs.view.CompilerReferenceFindUsagesTestInfo in project intellij-community by JetBrains.
the class CompilerReferenceServiceImpl method getTestFindUsages.
@NotNull
public CompilerReferenceFindUsagesTestInfo getTestFindUsages(@NotNull PsiElement element) {
myReadDataLock.lock();
try {
final TIntHashSet referentFileIds = getReferentFileIds(element);
final DirtyScopeTestInfo dirtyScopeInfo = myDirtyScopeHolder.getState();
return new CompilerReferenceFindUsagesTestInfo(referentFileIds, dirtyScopeInfo, myProject);
} finally {
myReadDataLock.unlock();
}
}
Aggregations