| 54 | } |
| 55 | |
| 56 | static const MethodTargets* findMethodTargets(const Targets* targets, const char* class_name, size_t len) { |
| 57 | for (const auto& target : *targets) { |
| 58 | if (matchesPattern(class_name, len, target.first)) { |
| 59 | return &target.second; |
| 60 | } |
| 61 | } |
| 62 | return nullptr; |
| 63 | } |
| 64 | |
| 65 | enum ConstantTag { |
| 66 | // Available since JDK 11 |
no test coverage detected