CmdLineParser.st
changeset 21997 76b594c98b9c
parent 17467 d708d65cdca7
child 21998 64c9c107b7cb
equal deleted inserted replaced
21996:0aa53ed4ef2d 21997:76b594c98b9c
    82 error: message option: option
    82 error: message option: option
    83 
    83 
    84     <resource: #skipInDebuggerWalkback>
    84     <resource: #skipInDebuggerWalkback>
    85 
    85 
    86     ^CmdLineOptionError new
    86     ^CmdLineOptionError new
    87         errorString: message;
    87         messageText: message;
    88         parameter: option;
    88         parameter: option;
    89         raise
    89         raise
    90 
    90 
    91     "Created: / 08-06-2009 / 14:22:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
    91     "Created: / 08-06-2009 / 14:22:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    92     "Modified: / 12-07-2017 / 10:24:34 / mawalch"
    92 !
    93 !
    93 
    94 
    94 errorOptionHasNoArgument:option 
    95 errorOptionHasNoArgument:option 
    95     self error:'option has no argument' option:option
    96     self error:'option has no argument' option:option
    96 
    97 
   276 ! !
   277 ! !
   277 
   278 
   278 !CmdLineParser class methodsFor:'documentation'!
   279 !CmdLineParser class methodsFor:'documentation'!
   279 
   280 
   280 version
   281 version
   281     ^'$Header: /cvs/stx/stx/libbasic/CmdLineParser.st,v 1.5 2015-02-13 22:48:41 cg Exp $'
   282     ^'$Header$'
   282 !
   283 !
   283 
   284 
   284 version_SVN
   285 version_SVN
   285     ^ '$Id: CmdLineParser.st,v 1.5 2015-02-13 22:48:41 cg Exp $'
   286     ^ '$Id$'
   286 ! !
   287 ! !
   287 
   288