| 2364 | } |
| 2365 | |
| 2366 | Value ValueIteratorBase::key() const { |
| 2367 | const Value::CZString czstring = (*current_).first; |
| 2368 | if (czstring.data()) { |
| 2369 | if (czstring.isStaticString()) |
| 2370 | return Value(StaticString(czstring.data())); |
| 2371 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2372 | } |
| 2373 | return Value(czstring.index()); |
| 2374 | } |
| 2375 | |
| 2376 | UInt ValueIteratorBase::index() const { |
| 2377 | const Value::CZString czstring = (*current_).first; |
nothing calls this directly
no test coverage detected