#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Wed, 21 Aug 2019 18:57:57 +0200
changeset 4500 d3fc30ebf06e
parent 4499 9375343c971b
child 4501 d8b0a5d31348
#BUGFIX by exept class: ParseNodeVisitor added: #visitInnerJavaBlockNode: #visitTryCatchStatementNode:
ParseNodeVisitor.st
--- a/ParseNodeVisitor.st	Wed Aug 21 12:57:11 2019 +0200
+++ b/ParseNodeVisitor.st	Wed Aug 21 18:57:57 2019 +0200
@@ -177,6 +177,10 @@
     self visitFunctionCallNode:aNode
 !
 
+visitInnerJavaBlockNode:aNode
+    self visitBlockNode:aNode
+!
+
 visitJavaScriptAssignmentNode:aNode
     self visitAssignmentNode:aNode
 !
@@ -209,6 +213,12 @@
 
 visitThisNode:aNode
     self visitSelfNode:aNode
+!
+
+visitTryCatchStatementNode:aNode
+    self visit:aNode tryBlock.
+    self visit:aNode errorExpression.
+    self visit:aNode catchBlock.
 ! !
 
 !ParseNodeVisitor::ParseNodeChildCollector class methodsFor:'documentation'!