class V8::Object

def each

def each
  for prop in @native.GetPropertyNames()
    yield prop, self[prop]
  end
end