MethodDescriptor desc = method.getDescriptor();
for (int i = 0; i < desc.parameterCount(); ++i) {
if (i > 0) {
sb.append(',');
}
sb.append(typeAsString(desc.parameterType(i)));
}
sb.append(')');
if (callFrame.getLocation() != null && callFrame.getLocation().getLine() >= 0) {
sb.append(" line " + callFrame.getLocation().getLine());
} else {