- not built -

fix for xpconnect name change
This commit is contained in:
rginda%netscape.com 2001-06-28 08:09:29 +00:00
parent c46f545623
commit 049fb0d6e8

View File

@ -417,7 +417,7 @@ function getStackTrace ()
while (frame)
{
var name = frame.functionName ? frame.functionName : "[anonymous]";
var name = frame.name ? frame.name : "[anonymous]";
str += "\n" + name + "@" + frame.lineNumber;
frame = frame.caller;
}