Method parameters reflection

G

George Moschovitis

Hello everyone,

I would like to use some kind of reflection to get the parameters of a
method.
For example:

class MyClass
def simple_method(last_name, name)
end
end

method_params(MyClass, :simple_method)
=> [:last_name, :name]

I have implement this using ParseTree, but since ParseTree uses
RubyInline which requires a C compiler, and AFAIK is not portable, I
would like a better solution.

Anyone has an idea?

George.
 
H

Hal Fulton

George said:
Hello everyone,

I would like to use some kind of reflection to get the parameters of a
method.

[snip]

I have wanted this, too, but AFAIK there is no
good solution at present.


Hal
 
G

George Moschovitis

I would like to use some kind of reflection to get the parameters of a


[snip]

I have wanted this, too, but AFAIK there is no
good solution at present.

ParseTree is a great solution, but it uses RubyInline which
requires a C compiler (typically gcc). No luck with Windows.

I _think_ ParseTree could use RubyDL like EvilRuby. This would be
something nice to have in Ruby 1.9. In the meantime I will try to play a
bit with EvilRuby, or perhaps Florian Gross could help here :) :)

regards,
George.
 
F

Florian Gross

George said:
ParseTree is a great solution, but it uses RubyInline which
requires a C compiler (typically gcc). No luck with Windows.

I _think_ ParseTree could use RubyDL like EvilRuby. This would be
something nice to have in Ruby 1.9. In the meantime I will try to play a
bit with EvilRuby, or perhaps Florian Gross could help here :) :)

Well, EvilRuby does not do this either as it's quite some work to dig
through all the pointers in that structures.

And porting ParseTree over to Ruby/DL could be problematic as well...
(It does a lot of its logic in C and Ruby/DL does AFAIK not yet work
correctly on 64 bit machines.)
 
T

Tim Sutherland

Hello everyone,

I would like to use some kind of reflection to get the parameters of a
method.
For example:

class MyClass
def simple_method(last_name, name)
end
end

method_params(MyClass, :simple_method)
=> [:last_name, :name]

I have implement this using ParseTree, but since ParseTree uses
RubyInline which requires a C compiler, and AFAIK is not portable, I
would like a better solution.

When Ruby gets named parameters, I guess this will be provided. Not quite
the answer you're looking for ;-)
 

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,754
Messages
2,569,528
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top