compiler/PPCAnyNode.st
changeset 515 b5316ef15274
parent 452 9f4558b3be66
--- a/compiler/PPCAnyNode.st	Fri Jul 24 15:06:54 2015 +0100
+++ b/compiler/PPCAnyNode.st	Mon Aug 17 12:13:16 2015 +0100
@@ -12,7 +12,7 @@
 
 !PPCAnyNode methodsFor:'accessing'!
 
-prefix
+defaultName
     ^ #any
 ! !
 
@@ -23,7 +23,8 @@
 !
 
 firstCharSet
-    ^ PPCharSetPredicate on: [:e | true ] 
+    self flag: 'JK: hack alert, 3 is EOF'.
+    ^ PPCharSetPredicate on: [:e | (e == 3) not  ] 
 ! !
 
 !PPCAnyNode methodsFor:'visiting'!