“查找用法”显示类方法的错误结果

时间:2019-05-17 09:09:03

标签: typescript webstorm

如果我定义一个类,例如:

export class MyTestClass {
  public toggle() { // *
    return true;
  }
}

// * I changes the value to `toggle`, 
// because this name is used often in libs, 
// so the described behaviour might be easier to reproduce.

我做什么

选择testMethod,然后单击Edit | Find | Find Usages

预期行为 所有出现的MyTestClass.testMethod都列在结果集中

实际行为 列出了所有testMethod的出现,甚至与MyTestClass相关的 NOT

我的问题 是否可以告诉 WebStorm 仅显示与类相关的方法用法?

1 个答案:

答案 0 :(得分:1)

该问题看起来与WEB-35855类似,请关注此问题进行更新