| 2278 | } |
| 2279 | |
| 2280 | Value ValueIteratorBase::key() const { |
| 2281 | const Value::CZString czstring = (*current_).first; |
| 2282 | if (czstring.data()) { |
| 2283 | if (czstring.isStaticString()) |
| 2284 | return Value(StaticString(czstring.data())); |
| 2285 | return Value(czstring.data(), czstring.data() + czstring.length()); |
| 2286 | } |
| 2287 | return Value(czstring.index()); |
| 2288 | } |
| 2289 | |
| 2290 | UInt ValueIteratorBase::index() const { |
| 2291 | const Value::CZString czstring = (*current_).first; |
nothing calls this directly
no test coverage detected