Method: ZergXcode::XcodeObject#visit_hash

Defined in:
lib/zerg_xcode/objects/xcode_object.rb

#visit_hash(hash, &accept) ⇒ Object



96
97
98
99
100
101
# File 'lib/zerg_xcode/objects/xcode_object.rb', line 96

def visit_hash(hash, &accept)
  hash.each_key do |key|
    visit_value(hash, key, hash[key], &accept)
  end
  hash
end