зеркало из https://github.com/mozilla/pjs.git
- not built -
add arguments to function name in call stack outliner
This commit is contained in:
Родитель
ea0ca9e02f
Коммит
5a480c46ea
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче