Merge remote-tracking branch 'origin/GP-4922-dragonmacher-highlight-stack-trace'

This commit is contained in:
Ryan Kurtz 2024-09-16 14:52:17 -04:00
commit 7670733fd2

View File

@ -288,7 +288,7 @@ abstract class DataTypeLocationDescriptor extends LocationDescriptor {
}
String variableName = paramParts[paramParts.length - 1];
int variableNameOffset = parameterDeclaration.indexOf(variableName);
int variableNameOffset = parameterDeclaration.lastIndexOf(variableName);
if (label.length() > variableNameOffset) {
return label.substring(0, variableNameOffset - 1); // -1 for the space before the name
}