| 291 | |
| 292 | |
| 293 | Jvm::Method Jvm::findMethod(const MethodSignature& signature) |
| 294 | { |
| 295 | jmethodID id = findMethod( |
| 296 | signature.clazz, |
| 297 | signature.name, |
| 298 | signature.returnType, |
| 299 | signature.parameters, |
| 300 | false); |
| 301 | |
| 302 | return Jvm::Method(signature.clazz, id); |
| 303 | } |
| 304 | |
| 305 | |
| 306 | Jvm::Method Jvm::findStaticMethod(const MethodSignature& signature) |
no test coverage detected