Comment #5 on issue 3981 by [email protected]: #<= on SourcedMethodReference is very slow
http://code.google.com/p/pharo/issues/detail?id=3981
Better would prolly be
^(self methodSymbol < aSourceReference methodSymbol)
or: [
(self methodSymbol = aSourceReference methodSymbol) and: [
self time <= aSourceReference time]]
Well, depends on whether you like ifTrue: ifFalse: I guess :P
Personally, I kinda like boolean logic.
