| 1211 | return pos_ >= EndOfDirectMethodsPos() && pos_ < EndOfVirtualMethodsPos(); |
| 1212 | } |
| 1213 | bool HasNextMethod() const { |
| 1214 | const bool result = pos_ >= EndOfInstanceFieldsPos() && pos_ < EndOfVirtualMethodsPos(); |
| 1215 | DCHECK_EQ(result, HasNextDirectMethod() || HasNextVirtualMethod()); |
| 1216 | return result; |
| 1217 | } |
| 1218 | void SkipStaticFields() { |
| 1219 | while (HasNextStaticField()) { |
| 1220 | Next(); |
no outgoing calls
no test coverage detected