// If we still don't have anything, replace with [unknown]
String symbolName = (stackFrame.getFunctionName().equals(""))
? "[anonymous] " : stackFrame.getFunctionName() + "() ";
myElem.appendChild(document.createTextNode(resourceName + "::"));
myElem.appendChild(document.createTextNode(symbolName));
// We make a link out of the line number which should pop open
// the Source Viewer when clicked.
AnchorElement lineLink = document.createAnchorElement();
lineLink.getStyle().setProperty("whiteSpace", "nowrap");
String columnStr = (stackFrame.getColumnOffset() > 0) ? " Col "