SmallSense__SmalltalkParseNodeVisitor.st
changeset 883 9c644e7c1d97
parent 381 57ef482699a6
--- a/SmallSense__SmalltalkParseNodeVisitor.st	Sat Aug 08 02:55:51 2015 +0100
+++ b/SmallSense__SmalltalkParseNodeVisitor.st	Sat Aug 22 00:14:23 2015 +0100
@@ -78,11 +78,14 @@
 
 !SmalltalkParseNodeVisitor class methodsFor:'processing'!
 
-process: tree in: class
-
-    ^self new process: tree in: class
+process:tree in:class manager:manager 
+    ^ self new 
+        process:tree
+        in:class
+        manager:manager
 
     "Created: / 26-11-2011 / 13:48:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 21-08-2015 / 16:01:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !SmalltalkParseNodeVisitor methodsFor:'initialization'!
@@ -97,10 +100,9 @@
 
 !SmalltalkParseNodeVisitor methodsFor:'processing'!
 
-process: tree in: cls
-
+process:tree in:cls manager:anObject 
     class := cls.
-    self visit: tree
+    self visit:tree
 
     "Created: / 26-11-2011 / 13:48:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !