(Class c, String methodName)
| 1411 | } |
| 1412 | |
| 1413 | private static String methodDescription(Class c, String methodName) { |
| 1414 | boolean isCtor = c != null && methodName.equals("new"); |
| 1415 | String type = isCtor ? "constructor" : "method"; |
| 1416 | return type + (isCtor ? "" : " " + methodName) + " in class " + c.getName(); |
| 1417 | } |
| 1418 | |
| 1419 | static abstract class FieldExpr extends HostExpr{ |
| 1420 | } |
no test coverage detected