| 308 | |
| 309 | |
| 310 | uint64_t HighLevelILIntegerList::operator[](size_t i) const |
| 311 | { |
| 312 | if (i >= size()) |
| 313 | throw HighLevelILInstructionAccessException(); |
| 314 | auto iter = begin(); |
| 315 | for (size_t j = 0; j < i; j++) |
| 316 | ++iter; |
| 317 | return *iter; |
| 318 | } |
| 319 | |
| 320 | |
| 321 | HighLevelILIntegerList::operator vector<uint64_t>() const |
nothing calls this directly
no test coverage detected