| 1941 | } |
| 1942 | |
| 1943 | inline Object::iterator::iterator(Object* object, const Type type) { |
| 1944 | _object = object; |
| 1945 | _keys = object->GetPropertyNames(); |
| 1946 | _index = type == Type::BEGIN ? 0 : _keys.Length(); |
| 1947 | } |
| 1948 | |
| 1949 | inline Object::iterator Napi::Object::begin() { |
| 1950 | iterator it(this, Object::iterator::Type::BEGIN); |
nothing calls this directly
no test coverage detected