1

我正在编写一个 Rider/ReSharper nav-from-here 插件,它应该使用一些简单的规则根据我站立的符号确定目标类型,最后导航到它。

第一部分还可以,我已经设法形成了所需的 FQN,但我在导航方面遇到了困难。我找到了这个StackOverflow 帖子,并认为我可以尝试这种方法。所以我一直在尝试使用TypeFactory.CreateTypeByCLRName大约两个小时来创建一个IDeclaredType实例,以便能够获得IDeclaredElement使用GetTypeElement()并最终获得它的声明。但是 API 似乎发生了变化,无论我做什么,我都无法让我的代码正常工作。

这是我到目前为止所得到的:

// does not work with Modules.GetModules(), either
foreach (var psiModule in solution.GetPsiServices().Modules.GetSourceModules())
{
    var type = TypeFactory.CreateTypeByCLRName("MyNamespace.MyClassName", psiModule);
    var typeElement = type.GetTypeElement();

    if (typeElement != null)
    {
        MessageBox.ShowInfo(psiModule.Name); // to make sure sth is happening
        break;
    }
}

奇怪的是,我实际上看到了一个消息框 - 但只有当标签MyClassName.cs处于活动状态时。当它处于焦点时,一切都很好。当它不是或文件关闭时,该类没有得到解决,type.IsResolvedfalse.

我究竟做错了什么?

4

1 回答 1

2

为此,您应该IPsiModule从计划使用您正在寻找的类型的上下文中获得一个实例。您可以通过.GetPsiModule()方法或许多其他方式(例如dataContext.GetData(PsiDataConstants.SOURCE_FILE)?.GetPsiModule().

void FindTypes(string fullTypeName, IPsiModule psiModule)
{
  // access the symbol cache where all the solution types are stored
  var symbolCache = psiModule.GetPsiServices().Symbols;

  // get a view on that cache from specific IPsiModule, include all referenced assemblies
  var symbolScope = symbolCache.GetSymbolScope(psiModule, withReferences: true, caseSensitive: true);

  // or use this to search through all of the solution types
  // var symbolScope = symbolCache.GetSymbolScope(LibrarySymbolScope.FULL, caseSensitive: true);

  // request all the type symbols with the specified full type name
  foreach (var typeElement in symbolScope.GetTypeElementsByCLRName(fullTypeName))
  {
    // ...
  }
}
于 2021-06-27T21:11:39.960 回答