| 2343 | } |
| 2344 | |
| 2345 | Value ValueIteratorBase::key() const { |
| 2346 | const Value::CZString czstring = (*current_).first; |
| 2347 | if (czstring.data()) { |
| 2348 | if (czstring.isStaticString()) |
| 2349 | return Value(StaticString(czstring.data())); |
| 2350 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2351 | } |
| 2352 | return Value(czstring.index()); |
| 2353 | } |
| 2354 | |
| 2355 | UInt ValueIteratorBase::index() const { |
| 2356 | const Value::CZString czstring = (*current_).first; |
no test coverage detected