| 1909 | } |
| 1910 | |
| 1911 | inline Object::const_iterator Napi::Object::begin() const { |
| 1912 | const_iterator it(this, Object::const_iterator::Type::BEGIN); |
| 1913 | return it; |
| 1914 | } |
| 1915 | |
| 1916 | inline Object::const_iterator Napi::Object::end() const { |
| 1917 | const_iterator it(this, Object::const_iterator::Type::END); |
no outgoing calls
no test coverage detected