Class: Binding

Inherits:
Object
  • Object
show all
Defined in:
lib/bindings.rb

Instance Method Summary collapse

Instance Method Details

#of_caller(n) ⇒ Object



38
39
40
41
42
# File 'lib/bindings.rb', line 38

def of_caller(n)
  c = ::Fiddle::Binding.callers
  n < c.size or raise "No such frame, gone beyond end of stack!"
  c[n]
end