| 149 | } |
| 150 | |
| 151 | void DictionaryIterator::init(Dictionary *dict) |
| 152 | { |
| 153 | Iterator = std::make_unique<Dictionary::ConstIterator>(dict->Map); |
| 154 | Dict = dict; |
| 155 | |
| 156 | GC::WriteBarrier(this, Dict); |
| 157 | } |
| 158 | |
| 159 | static DictionaryIterator *DictIteratorCreate(Dictionary *dict) |
| 160 | { |
no outgoing calls
no test coverage detected