Parameter names from reflection?

C

Charlie Squires

Is there a way to use reflection or some other method to return the names of
the parameters a method uses? I know that 'arity' will return the number of
parameters, but I'm looking for the names of them.

Thanks in advance,
Charlie
 
T

Trans

If you can get the binding from the start of the method you can look at
#local_variables.

T.
 
R

Robert Klemme

Trans said:
If you can get the binding from the start of the method you can look
at #local_variables.

IMHO you can't do that without changing the method. Charlie asked for a
solution using reflection so I think this is not an option for him.

Kind regards

robert
 
C

Charlie Squires

Thanks for the feedback. I need a way to do this without changing the method
itself. I'm trying to get an external program a list of parameters from a
Ruby source file. I suppose I could write a parse script.
 
R

Ryan Leavengood

Thanks for the feedback. I need a way to do this without changing the met= hod
itself. I'm trying to get an external program a list of parameters from a
Ruby source file. I suppose I could write a parse script.

In that case use ParseTree like Eric suggested. Here is something that
probably does about what you want (sorry if I ruined your fun, but
this seemed like an interesting problem):

require 'enumerator'
require 'parse_tree'

class MethodParams
attr_reader :parsed, :methods
def initialize(klass)
@parsed =3D ParseTree.new.parse_tree(klass)
@methods =3D {}
@parsed[0].select {|i| i.respond_to?:)[]) and i[0] =3D=3D :defn}.each d=
o |i|
if i[2][0] =3D=3D :scope
@methods[i[1]] =3D i[2][1][1][1..-1]
end
end
end
end

if $0 =3D=3D __FILE__
if ARGV.length < 1
puts "Usage: #$0 <files to analyze>"
exit(1)
end
class_list =3D ObjectSpace.enum_for:)each_object, Class).to_a
ARGV.each do |file|
require file
end
new_classes =3D ObjectSpace.enum_for:)each_object, Class).to_a - class_li=
st
new_classes.each do |klass|
m =3D MethodParams.new(klass)
m.methods.keys.each do |method|
puts "The parameters for #{klass}##{method} are
#{m.methods[method].join(',')}"
end
end
end
__END__

Depending on your platform, you may have trouble with RubyInline and
ParseTree. I had to do some hackery on my Windows laptop to get the
above to work. Note that the above will only show the parameters of
instance methods on classes inside the required files.

Ryan
 
F

Francis Hwang

RDoc parses this info too, maybe you could dig around in RDoc and see
how they do it?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top