You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new Version will save Statemens for each call. You could sort the the calls by this statements with the statementlist of the method body.
I get your usecase. This is a good API extension. Similar to a method that gives you targets of a specific statement in a method
Missing Feature
callFrom(methodSignature) returns a no-sorted set, consider making a sorted list by the call sequence?
I'm currently doing a research of type-bug
Suppose i have a program below
i use the following code to get the Methods called in A.main()
i got the following output:
<type_bug.refined.C: void m()>
<type_bug.refined.C: void ()>
<type_bug.refined.I: void m()>
while the correct sequence should be like:
<type_bug.refined.C: void ()>
<type_bug.refined.C: void m()>
<type_bug.refined.I: void m()>
i wonder if there is a way to sort the method call correctly😊
The text was updated successfully, but these errors were encountered: