| 2546 | } |
| 2547 | |
| 2548 | String ValueIteratorBase::name() const |
| 2549 | { |
| 2550 | char const *keey; |
| 2551 | char const *end; |
| 2552 | keey = memberName(&end); |
| 2553 | if (!keey) |
| 2554 | return String(); |
| 2555 | return String(keey, end); |
| 2556 | } |
| 2557 | |
| 2558 | char const *ValueIteratorBase::memberName() const |
| 2559 | { |
no test coverage detected