compiler/PPCSpecializingVisitor.st
changeset 502 1e45d3c96ec5
parent 464 f6d77fee9811
child 503 ff58cd9f1f3c
child 515 b5316ef15274
--- a/compiler/PPCSpecializingVisitor.st	Thu May 21 14:12:22 2015 +0100
+++ b/compiler/PPCSpecializingVisitor.st	Fri Jul 24 15:06:54 2015 +0100
@@ -188,13 +188,15 @@
     (node child isKindOf: PPCCharacterNode) ifTrue: [ 
         self change.
         ^ PPCTrimmingCharacterTokenNode new
-            name: node name;
+            child: node child;               
             whitespace: node whitespace;
             tokenClass: node tokenClass;
-            child: node child;
+            name: node name;
             yourself
     ].
 
     ^ node
+
+    "Modified: / 21-05-2015 / 14:41:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !