parameterNames.addAll(Collections.<String>nCopies(method.getParameterTypes().length, null));
methodParameters.put(method, parameterNames);
isStaticMethod = Modifier.isStatic(method.getModifiers());
}
return new EmptyVisitor() {
// assume static method until we get a first parameter name
public void visitLocalVariable(String name, String description, String signature, Label start, Label end, int index) {
if (isStaticMethod) {
parameterNames.set(index, name);
} else if (index > 0) {