Renames an internal type name, e.g. "com.package.MyClass".
If the type doesn't need to be renamed, returns the input string as-is.
The internal type of some of the MethodVisitor turns out to be a type
descriptor sometimes so descriptors are renamed too.
if (type == null) {
return null;
}
if (type.equals(mOldName)) {
return mNewName;
}
if (!mOldBase.equals(mOldName) && type.equals(mOldBase)) {
return mNewBase;
}
int pos = type.indexOf('$");
if (pos == mOldBase.length() && type.startsWith(mOldBase)) {
return mNewBase + type.substring(pos);
}
return type;