Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.345.mcz==================== Summary ====================
Name: Kernel-nice.345
Author: nice
Time: 25 December 2009, 8:58:24 am
UUID: 87afe7e1-4d46-4e1f-b308-115fac49c41f
Ancestors: Kernel-nice.344
Revert #formalParametersAt: it was traitified
=============== Diff against Kernel-nice.344 ===============
Item was removed:
- ----- Method: Behavior>>formalParametersAt: (in category 'accessing method dictionary') -----
- formalParametersAt: aSelector
- "Return the names of the arguments used in this method."
-
- | source |
- source := self sourceCodeAt: aSelector ifAbsent: [^ #()]. "for now"
- ^(self parserClass new) parseParameterNames: source!