changed: #methodInfoFor:
authorClaus Gittinger <cg@exept.de>
Fri, 02 Oct 2009 11:19:21 +0200
changeset 8848 1bc3db6d2e50
parent 8847 af6d9ecd60dd
child 8849 f257f3a223a7
changed: #methodInfoFor:
Tools_MethodCategoryList.st
--- a/Tools_MethodCategoryList.st	Fri Oct 02 10:44:40 2009 +0200
+++ b/Tools_MethodCategoryList.st	Fri Oct 02 11:19:21 2009 +0200
@@ -1244,11 +1244,13 @@
         ifAbsentPut:[
             |info|
 
-            info := CachedMethodInfo new.
-            info isObsolete:(aMethod isObsolete).
-            info sendsSuper:(aMethod superMessages notEmptyOrNil).
-            info isUncommented:(aMethod comment isEmptyOrNil and:[aMethod isVersionMethod not]).
-            info isDocumentationMethod:( aMethod isDocumentationMethod).
+            true "aMethod mclass language isSmalltalk" ifTrue:[
+                info := CachedMethodInfo new.
+                info isObsolete:(aMethod isObsolete).
+                info sendsSuper:(aMethod superMessages notEmptyOrNil).
+                info isUncommented:(aMethod comment isEmptyOrNil and:[aMethod isVersionMethod not]).
+                info isDocumentationMethod:( aMethod isDocumentationMethod).
+            ].
             info
         ]
 !
@@ -1447,5 +1449,9 @@
 !MethodCategoryList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools_MethodCategoryList.st,v 1.31 2009-09-23 19:21:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_MethodCategoryList.st,v 1.32 2009-10-02 09:19:21 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_MethodCategoryList.st,v 1.32 2009-10-02 09:19:21 cg Exp $'
 ! !