[svn] r7740: nemerle/trunk/ncc/misc/ExprWalker.n

IT svnadmin at nemerle.org
Fri Jul 6 15:02:04 CEST 2007


Log:
Fixed refactoring bug.

Author: IT
Date: Fri Jul  6 15:02:02 2007
New Revision: 7740

Modified:
   nemerle/trunk/ncc/misc/ExprWalker.n

Modified: nemerle/trunk/ncc/misc/ExprWalker.n
==============================================================================
--- nemerle/trunk/ncc/misc/ExprWalker.n	(original)
+++ nemerle/trunk/ncc/misc/ExprWalker.n	Fri Jul  6 15:02:02 2007
@@ -38,8 +38,9 @@
     internal Push(node : object) : bool
     {
       _node = node;
+      _isSkipped = false;
 
-      if (_isStopped || _isSkipped || node == null || _handler == null)
+      if (_isStopped || node == null || _handler == null)
       {
         false;
       }



More information about the svn mailing list