#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sun, 05 Feb 2017 01:36:42 +0100
changeset 5451 32ed77c9d198
parent 5450 e15db166b618
child 5452 f7c0a99ef04d
#REFACTORING by cg class: DoWhatIMeanSupport changed: #addClassesOfMessage:inClass:to: (send #sendsAnySelector: instead of #sendsAny:)
DoWhatIMeanSupport.st
--- a/DoWhatIMeanSupport.st	Sat Feb 04 22:52:17 2017 +0100
+++ b/DoWhatIMeanSupport.st	Sun Feb 05 01:36:42 2017 +0100
@@ -5880,7 +5880,7 @@
                 ].
                 "/ if that method sends one of new/basicNew/new:/basicNew:, assume it returns an instance of itself
                 mthd notNil ifTrue:[
-                    ( mthd sendsAny:#( #'new' #'basicNew' #'new:' #'basicNew:' )) ifTrue:[
+                    ( mthd sendsAnySelector:#( #'new' #'basicNew' #'new:' #'basicNew:' )) ifTrue:[
                         setOfTypes add:receiverClass theNonMetaclass.
                         ^ setOfTypes
                     ].
@@ -5959,6 +5959,8 @@
     ].
     
     ^ setOfTypes
+
+    "Modified: / 05-02-2017 / 01:27:47 / cg"
 !
 
 classOfNode:aNode