| 2325 | } |
| 2326 | |
| 2327 | Value ValueIteratorBase::key() const { |
| 2328 | const Value::CZString czstring = (*current_).first; |
| 2329 | if (czstring.data()) { |
| 2330 | if (czstring.isStaticString()) |
| 2331 | return Value(StaticString(czstring.data())); |
| 2332 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2333 | } |
| 2334 | return Value(czstring.index()); |
| 2335 | } |
| 2336 | |
| 2337 | UInt ValueIteratorBase::index() const { |
| 2338 | const Value::CZString czstring = (*current_).first; |
nothing calls this directly
no test coverage detected