| 2526 | } |
| 2527 | |
| 2528 | Value ValueIteratorBase::key() const |
| 2529 | { |
| 2530 | const Value::CZString czstring = (*current_).first; |
| 2531 | if (czstring.data()) |
| 2532 | { |
| 2533 | if (czstring.isStaticString()) |
| 2534 | return Value(StaticString(czstring.data())); |
| 2535 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2536 | } |
| 2537 | return Value(czstring.index()); |
| 2538 | } |
| 2539 | |
| 2540 | UInt ValueIteratorBase::index() const |
| 2541 | { |
no test coverage detected