diff -r f6d77fee9811 -r 1e45d3c96ec5 compiler/PPCSpecializingVisitor.st --- 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 " ! !