| 2358 | } |
| 2359 | |
| 2360 | Value ValueIteratorBase::key() const { |
| 2361 | const Value::CZString czstring = (*current_).first; |
| 2362 | if (czstring.data()) { |
| 2363 | if (czstring.isStaticString()) |
| 2364 | return Value(StaticString(czstring.data())); |
| 2365 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2366 | } |
| 2367 | return Value(czstring.index()); |
| 2368 | } |
| 2369 | |
| 2370 | UInt ValueIteratorBase::index() const { |
| 2371 | const Value::CZString czstring = (*current_).first; |
no test coverage detected