This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.
lookup(key)
Lookup any key in the stack of hashes
# File lib/rdoc/template.rb, line 73 def lookup(key) @stack.reverse_each do |level| val = level[key] return val if val end nil end