[Pkg] The Trunk: Compiler-nice.110.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Dec 25 18:15:45 UTC 2009


Nicolas Cellier uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-nice.110.mcz

==================== Summary ====================

Name: Compiler-nice.110
Author: nice
Time: 25 December 2009, 7:15:24 am
UUID: 017eda80-c544-4827-bdc3-54f6cadca3f3
Ancestors: Compiler-ar.109

Add support for parsing parameter names

=============== Diff against Compiler-ar.109 ===============

Item was added:
+ ----- Method: Parser>>parseParameterNames: (in category 'public access') -----
+ parseParameterNames: aString 
+ 	"Answer the parameter names for the argument, aString, which should 
+ 	 parse successfully up to the temporary declaration or the end of the 
+ 	 method header."
+ 
+ 	self initScannerForTokenization.
+ 	^self
+ 		initPattern: aString
+ 		notifying: nil
+ 		return: [:pattern | pattern at: 2]!



More information about the Packages mailing list