Hi,
I experience a strange behavior with Pragma>>#allNamed:in:
When I use
Pragma allNamed: #myPragma in: MyClass
It works as expected.
But when instead of hard-coding "MyClass" I use "self class" in an method (instance side),
Pragma allNamed: #myPragma in: self class
returns an empty array.
What can I do about it?
Julien