Class | Needle::InterceptorChainBuilder::ProxyObjectChainElement |
In: |
lib/needle/interceptor-chain.rb
|
Parent: | Object |
Encapsulates the end of an interceptor chain, which is the actual object being affected.
Create a new ProxyObjectChainElement that wraps the given object.
# File lib/needle/interceptor-chain.rb, line 68 68: def initialize( obj ) 69: @obj = obj 70: end