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