Flowdock
method_missing(mid, *args) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/ostruct.rb, line 89
  def method_missing(mid, *args) # :nodoc:
    mname = mid.id2name
    len = args.length
    if mname.chomp!('=')
      if len != 1
        raise ArgumentError, "wrong number of arguments (#{len} for 1)", caller(1)
      end
      modifiable[new_ostruct_member(mname)] = args[0]
    elsif len == 0
      @table[mid]
    else
      raise NoMethodError, "undefined method `#{mname}' for #{self}", caller(1)
    end
  end
Register or log in to add new notes.