| 157 | } |
| 158 | |
| 159 | static DictionaryIterator *DictIteratorCreate(Dictionary *dict) |
| 160 | { |
| 161 | DictionaryIterator *iterator = Create<DictionaryIterator>(); |
| 162 | iterator->init(dict); |
| 163 | |
| 164 | return iterator; |
| 165 | } |
| 166 | |
| 167 | static int DictIteratorNext(DictionaryIterator *self) |
| 168 | { |
no test coverage detected