| 2076 | } |
| 2077 | |
| 2078 | Value ValueIteratorBase::key() const { |
| 2079 | const Value::CZString czstring = (*current_).first; |
| 2080 | if (czstring.data()) { |
| 2081 | if (czstring.isStaticString()) |
| 2082 | return Value(StaticString(czstring.data())); |
| 2083 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2084 | } |
| 2085 | return Value(czstring.index()); |
| 2086 | } |
| 2087 | |
| 2088 | UInt ValueIteratorBase::index() const { |
| 2089 | const Value::CZString czstring = (*current_).first; |
no test coverage detected