add arguments to function name in call stack outliner
This commit is contained in:
rginda%netscape.com 2001-06-14 06:01:49 +00:00
Родитель 90942baa35
Коммит 74bfef7fc8
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -340,7 +340,8 @@ function sov_getcelltext (row, colID)
switch (colID)
{
case "function-name":
return this.frames[row].script.functionName;
return this.frames[row].script.functionName + " (" +
formatArguments(this.frames[row].scope) + ")";
case "line-number":
return this.frames[row].line;

Просмотреть файл

@ -340,7 +340,8 @@ function sov_getcelltext (row, colID)
switch (colID)
{
case "function-name":
return this.frames[row].script.functionName;
return this.frames[row].script.functionName + " (" +
formatArguments(this.frames[row].scope) + ")";
case "line-number":
return this.frames[row].line;