} else {
methodBindings = ref.getMethods(jsni.memberName().toCharArray());
}
boolean found = false;
for (MethodBinding methodBinding : methodBindings) {
if (jsni.matchesAnyOverload() || jsni.paramTypesString().equals(sig(methodBinding))) {
currentBindings.add(methodBinding);
found = true;
}
}
if (!found) {