method
lookup
v1_9_3_125 -
Show latest stable
- Class:
Rake::TaskArguments
lookup(name)protected
No documentation available.
# File lib/rake/task_arguments.rb, line 68
def lookup(name)
if @hash.has_key?(name)
@hash[name]
elsif @parent
@parent.lookup(name)
end
end