| 710 | } |
| 711 | |
| 712 | void ClassDataItemIterator::ReadClassDataField() { |
| 713 | field_.field_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 714 | field_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_); |
| 715 | // The user of the iterator is responsible for checking if there |
| 716 | // are unordered or duplicate indexes. |
| 717 | } |
| 718 | |
| 719 | void ClassDataItemIterator::ReadClassDataMethod() { |
| 720 | method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); |
nothing calls this directly
no test coverage detected