Status: Fixed
Owner: stephane.ducasse
Labels: Milestone-1.2
New issue 3504 by stephane.ducasse: MethodContext>>numArgs
http://code.google.com/p/pharo/issues/detail?id=3504MethodContext>>numArgs
"Answer the number of arguments required to evaluate this method or block."
^closureOrNil ifNil: [method numArgs] ifNotNil: [closureOrNil numArgs]