#OTHER by exept
authorClaus Gittinger <cg@exept.de>
Thu, 22 Aug 2019 17:54:57 +0200
changeset 4509 132f89212503
parent 4508 acdb6bc18328
child 4510 fe0db46b20fe
#OTHER by exept fixed child enumeration for explainer
ParseErrorNode.st
--- a/ParseErrorNode.st	Thu Aug 22 17:54:53 2019 +0200
+++ b/ParseErrorNode.st	Thu Aug 22 17:54:57 2019 +0200
@@ -129,6 +129,13 @@
     "Created: / 09-07-2011 / 22:29:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
+!ParseErrorNode methodsFor:'enumeration'!
+
+childrenDo:aBlock
+    children notNil ifTrue:[
+        children do:aBlock  
+    ]
+! !
 
 !ParseErrorNode methodsFor:'printing & storing'!