#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Mon, 07 Oct 2019 18:17:16 +0200
changeset 1201 045c36ec4fa4
parent 1200 0eed83e89cd6
child 1202 0a18a2181fe8
#BUGFIX by exept class: JavaScriptFunctionNode changed: #messageSelectorsDo: #messagesDo:
JavaScriptFunctionNode.st
--- a/JavaScriptFunctionNode.st	Tue Sep 24 20:32:25 2019 +0200
+++ b/JavaScriptFunctionNode.st	Mon Oct 07 18:17:16 2019 +0200
@@ -309,7 +309,9 @@
 messageSelectorsDo:aBlock
     "evaluate aBlock for each message-selector sent by this node and subnodes"
 
-    statements messageSelectorsDo:aBlock
+    statements notNil ifTrue:[
+        statements allMessageSelectorsDo:aBlock
+    ].
 
     "Created: / 24-07-2010 / 21:42:25 / cg"
 !
@@ -318,7 +320,7 @@
     "evaluate aBlock for each message-node sent by this node and subnodes"
 
     statements notNil ifTrue:[
-        statements messagesDo:aBlock
+        statements allMessagesDo:aBlock
     ].
 
     "Created: / 24-07-2010 / 21:42:25 / cg"