| 2086 | } |
| 2087 | |
| 2088 | UInt ValueIteratorBase::index() const { |
| 2089 | const Value::CZString czstring = (*current_).first; |
| 2090 | if (!czstring.data()) |
| 2091 | return czstring.index(); |
| 2092 | return Value::UInt(-1); |
| 2093 | } |
| 2094 | |
| 2095 | std::string ValueIteratorBase::name() const { |
| 2096 | char const* keey; |
no test coverage detected