Method: Ruby::DelimitedVariable#method_missing

Defined in:
lib/ruby/aggregate.rb

#method_missing(method, *args, &block) ⇒ Object



67
68
69
# File 'lib/ruby/aggregate.rb', line 67

def method_missing(method, *args, &block)
  identifier.respond_to?(method) ? identifier.send(method, *args, &block) : super
end