Scanner.st
changeset 4112 98944176f360
parent 4083 314f412f15c1
child 4116 aa63561a20b3
--- a/Scanner.st	Wed Feb 08 00:58:52 2017 +0100
+++ b/Scanner.st	Wed Feb 08 00:58:55 2017 +0100
@@ -2076,6 +2076,8 @@
 initialize
     "initialize the scanner"
 
+    <modifier: #super> "must be called if redefined"
+
     errorFlag := false.
     tokenPosition := 1.
     tokenLineNr := lineNr := 1.
@@ -2095,7 +2097,7 @@
     scanColonAsKeyword isNil ifTrue:[ scanColonAsKeyword := true ]. 
     self initializeActionTable.
 
-    "Modified (comment): / 05-10-2011 / 09:22:46 / cg"
+    "Modified: / 08-02-2017 / 00:31:22 / cg"
 !
 
 initializeActionTable