Name
calls from — Returns the set of all method calls found in a set of methods
Description
The transform returns all the method calls found
in the methods
in the set.
If you have two sets of methods, foo
and bar
,
and you want to identify all the places in foo
where bar is called, you might use:
( calls from foo ) intersection ( calls to bar )
.