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