8313631: SA: stack trace printed using "where" command does not show class name

Reviewed-by: cjplummer, dholmes
This commit is contained in:
Ashutosh Mehra 2023-09-28 13:32:15 +00:00
parent 0c55887bfb
commit 065203d44a

@ -1916,7 +1916,7 @@ public class HTMLGenerator implements /* imports */ ClassConstants {
for (JavaVFrame vf = thread.getLastJavaVFrameDbg(); vf != null; vf = vf.javaSender()) {
Method method = vf.getMethod();
buf.append(" - ");
buf.append(genMethodLink(method));
buf.append(genMethodAndKlassLink(method));
buf.append(" @bci = " + vf.getBCI());
int lineNumber = method.getLineNumberFromBCI(vf.getBCI());