| 5295 | } |
| 5296 | |
| 5297 | object findMethodInClass(Thread* t, |
| 5298 | GcClass* class_, |
| 5299 | GcByteArray* name, |
| 5300 | GcByteArray* spec) |
| 5301 | { |
| 5302 | return findInTable(t, |
| 5303 | cast<GcArray>(t, class_->methodTable()), |
| 5304 | name, |
| 5305 | spec, |
| 5306 | getMethodName, |
| 5307 | getMethodSpec); |
| 5308 | } |
| 5309 | |
| 5310 | object findInHierarchyOrNull( |
| 5311 | Thread* t, |
no test coverage detected