changed: #notifyError:position:to:
authorStefan Vogel <sv@exept.de>
Mon, 08 Oct 2012 14:36:16 +0200
changeset 2937 784c3f15a367
parent 2936 cd787e6ed225
child 2938 220928d3f06e
changed: #notifyError:position:to: do not refer to private class
Scanner.st
--- a/Scanner.st	Mon Oct 08 10:27:15 2012 +0200
+++ b/Scanner.st	Mon Oct 08 14:36:16 2012 +0200
@@ -1382,8 +1382,8 @@
             requestor error:aMessage position:position to:endPos from:self.
             ^ self
         ].
-        Parser::ParseError isHandled ifTrue:[
-            Parser::ParseError new
+        Parser parseErrorSignal isHandled ifTrue:[
+            Parser parseErrorSignal new
                 errorMessage:aMessage startPosition:position endPosition:endPos;
                 parameter:self;
                 lineNumber:tokenLineNr; "lineNr"
@@ -3424,11 +3424,11 @@
 !Scanner class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.283 2012-06-13 11:44:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.284 2012-10-08 12:36:16 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.283 2012-06-13 11:44:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Scanner.st,v 1.284 2012-10-08 12:36:16 stefan Exp $'
 ! !
 
 Scanner initialize!