'From Squeak3.8gamma of ''24 November 2004'' [latest update: #6662] on 20 April 2005 at 5:08:29 pm'! "Change Set: shadowFix-bf Date: 20 April 2005 Author: Bert Freudenberg Fix typo introduced in 6646fixShadowed-mir "! !Parser methodsFor: 'public access' stamp: 'bf 4/20/2005 16:31'! parseArgsAndTemps: aString notifying: req "Parse the argument, aString, notifying req if an error occurs. Otherwise, answer a two-element Array containing Arrays of strings (the argument names and temporary variable names)." (req notNil and: [RequestAlternateSyntaxSetting signal]) ifTrue: [^ (self as: DialectParser) parseArgsAndTemps: aString notifying: req]. aString == nil ifTrue: [^#()]. doitFlag _ false. "Don't really know if a doit or not!!" ^self initPattern: aString notifying: req return: [:pattern | (pattern at: 2) , (self temporariesIn: (pattern at: 1))]! !