Questions tagged [call-hierarchy]

Call Hierarchy enables you to navigate through your code by displaying all calls to and from a selected method, property, or constructor. This enables you to better understand how code flows and to evaluate the effects of changes to code. You can examine several levels of code to view complex chains of method calls and additional entry points to the code, which enables you to explore all possible execution paths.

50 questions
0
votes
1 answer

gevent find parent greenlet

Is there a way to know from which greenlet the current greenlet was spawned from in gevent? I realize that the greenlet which spawned the current greenlet might have terminated already, but in that case I would be ok with handling a None as an…
Tiago Coutinho
  • 1,618
  • 15
  • 17
0
votes
0 answers

Where is "View Call Hierarchy" in universal windows development?

In the Call Hierarchy window, Visual Studio is telling me to right click and select View Call Hierarchy to show the call hierarchy. I can't seem to find this option, not when running and not when paused on a breakpoint in a relevant context. Here is…
vrwim
  • 13,020
  • 13
  • 63
  • 118
0
votes
2 answers

Find which class an object was instantiated in

I am trying to learn unnecessarily complicated source code. There is a method public void passObject(SomeObject someObject), and I want to know which class someObject was instantiated in. The problem is, as we traverse up the call hierarchy, the…
user2763361
  • 3,789
  • 11
  • 45
  • 81
0
votes
1 answer

Find callers of method from parent interface in java?

I would like to list all callers of method from parent interface only, but I cannot find such a feature in both Eclipse and IntelliJ, Anyone can advise? < Current Limitation > Both Eclipse and Intellij's show usage/call hierarchy/show reference will…
Jim Horng
  • 1,587
  • 1
  • 13
  • 23
-1
votes
1 answer

View Call Hierarchy says Cursor must be on a member name

I've read this great post about how to find all implementations of an interface. However, after clicking in context menu View Call Hierarchy, then it says Cursor must be on a member name: What I do is: double click at the interface then click View…
Learner
  • 417
  • 6
  • 24
1 2 3
4