Hi!
For a given famix class “cls” and a given famix method “m” (m is defined in cls), I would like to get the methods called by m that belongs to cls. Why is the simplest way to get this? I try the following:
(m queryAllOutgoingInvocations withinClass: cls) asArray flatCollect: #candidates
But I am sure there is a simpler way to do this…. Any hint?
Cheers, Alexandre
(m queryAllOutgoingInvocations within: m parentType) opposites
Doru
On Thu, May 14, 2015 at 5:58 PM, Alexandre Bergel alexandre.bergel@me.com wrote:
Hi!
For a given famix class “cls” and a given famix method “m” (m is defined in cls), I would like to get the methods called by m that belongs to cls. Why is the simplest way to get this? I try the following:
(m queryAllOutgoingInvocations withinClass: cls) asArray flatCollect: #candidates
But I am sure there is a simpler way to do this…. Any hint?
Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Ah yes!
Thanks Alexandre