mercurial/HGCommandParser.st
changeset 51 61700cf82743
parent 40 e3699c0b00f9
child 54 66045198bfbc
--- a/mercurial/HGCommandParser.st	Wed Nov 14 19:50:59 2012 +0000
+++ b/mercurial/HGCommandParser.st	Wed Nov 14 20:03:01 2012 +0000
@@ -52,13 +52,13 @@
 
 !HGCommandParser methodsFor:'error reporting'!
 
-parseStatus
-    | c |
-    stream skipSeparators.
-    c := stream peek.
-    self halt.
+error: aString
+    <context: #return>
+    <resource: #skipInDebuggersWalkBack>
 
-    "Created: / 22-10-2012 / 21:43:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    HGCommandParseError raiseWith:#error: errorString:aString
+
+    "Created: / 14-11-2012 / 19:59:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !HGCommandParser methodsFor:'parsing'!