mercurial/HGCommandParser.st
changeset 38 c3d02ed6a645
parent 36 41cb88196e69
child 39 10e693b3e034
equal deleted inserted replaced
37:ce1d3916f7ad 38:c3d02ed6a645
    62 
    62 
    63     "Created: / 23-10-2012 / 10:57:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    63     "Created: / 23-10-2012 / 10:57:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    64 !
    64 !
    65 
    65 
    66 nextLine
    66 nextLine
    67     stream nextLine
    67     ^stream nextLine
    68 
    68 
    69     "Created: / 23-10-2012 / 11:05:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    69     "Created: / 23-10-2012 / 11:05:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    70     "Modified: / 09-11-2012 / 12:02:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    70 !
    71 !
    71 
    72 
    72 nextSpace
    73 nextSpace
    73     | c |
    74     | c |
    74     ((c := stream next) ~= Character space) ifFalse:[
    75     ((c := stream next) ~= Character space) ifTrue:[
    75         self error:'Space expected. ''', c , ''' found!!'
    76         self error:'Space expected. ''', c , ''' found!!'
    76     ]
    77     ]
    77 
    78 
    78     "Created: / 23-10-2012 / 10:58:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    79     "Created: / 23-10-2012 / 10:58:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    80     "Modified: / 09-11-2012 / 11:59:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    79 ! !
    81 ! !
    80 
    82 
    81 !HGCommandParser class methodsFor:'documentation'!
    83 !HGCommandParser class methodsFor:'documentation'!
    82 
    84 
    83 version_SVN
    85 version_SVN