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