[Feature]: Method calls sorted by sequence #1086
Labels
call graph
This issues is related to the call graph construction
good first issue
Good for newcomers
improvement
new feature, improve in readability, structure or performance
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: