getCalledMethods method

Set<String> getCalledMethods(
  1. int callSite
)

Gets methods called at a specific call site.

Implementation

Set<String> getCalledMethods(int callSite) {
  return getCallGraph()[callSite] ?? {};
}