有誰知道是否有方法來訪問在紅寶石塊傳遞參數的名稱?紅寶石塊參數名稱
E.g.
def do_something()
# method uses the names of the parameters passed to the block
# in addition to their values
# e.g. the strings "i" and "j"
end
do_something { |i, j| ... }
這是我正在寫的一個dsl的要求,而且是一個不尋常的用例。這可能是像parsetree這樣的東西,我只是想知道是否有一個更簡單/更貼心的方式。
感謝
你爲什麼要這樣做? – Chuck 2009-05-20 09:01:09
我需要訪問我正在寫的dsl的參數名稱。 – fturtle 2009-05-20 09:02:56