#DOCUMENTATION by exept cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:09:29 +0200
branchcvs_MAIN
changeset 3921 1999ba4ed954
parent 3920 47a7b4a23bee
child 3922 5e743d31adf7
#DOCUMENTATION by exept class: JavaMethodAnalyzer comment/format in: #messagesSent
JavaMethodAnalyzer.st
--- a/JavaMethodAnalyzer.st	Thu Jun 27 12:42:13 2019 +0200
+++ b/JavaMethodAnalyzer.st	Tue Jul 09 20:09:29 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1996-2015 by Claus Gittinger
 
@@ -250,7 +252,12 @@
 !
 
 messagesSent
-    ^ methodsInvoked collect:[:methodRef |methodRef selector ]
+    "return a set-like collection with the message selectors sent by the receiver.
+     Uses Parser to parse methods source and extract the names.
+     The returned collection includes all used message selectors 
+     (i.e. including super-send messages)"
+
+     ^ methodsInvoked collect:[:methodRef |methodRef selector ]
 
     "Created: / 31-08-2013 / 10:44:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 31-08-2013 / 21:32:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"