The Trunk: Compiler-nice.110.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compiler-nice.110.mcz

commits-2
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]!