зеркало из https://github.com/mozilla/gecko-dev.git
Родитель
8e321ed4c9
Коммит
ced33340be
|
@ -1064,6 +1064,12 @@ function tov_isctrempt (index)
|
|||
return !row || !row.childData;
|
||||
}
|
||||
|
||||
TreeOView.prototype.isSeparator =
|
||||
function tov_isseparator (index)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
TreeOView.prototype.getParentIndex =
|
||||
function tov_getpi (index)
|
||||
{
|
||||
|
|
|
@ -1064,6 +1064,12 @@ function tov_isctrempt (index)
|
|||
return !row || !row.childData;
|
||||
}
|
||||
|
||||
TreeOView.prototype.isSeparator =
|
||||
function tov_isseparator (index)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
TreeOView.prototype.getParentIndex =
|
||||
function tov_getpi (index)
|
||||
{
|
||||
|
|
|
@ -596,7 +596,7 @@ function XXXsetSourceFunctionMarks (url)
|
|||
if (!source || !scriptArray)
|
||||
{
|
||||
dd ("Can't set function marks for " + url);
|
||||
return false;
|
||||
return;
|
||||
}
|
||||
|
||||
for (var i = 0; i < scriptArray.length; ++i)
|
||||
|
@ -726,7 +726,7 @@ function disableBreakpointByNumber (number)
|
|||
if (!bpr)
|
||||
{
|
||||
display (getMsg(MSN_ERR_BP_NOINDEX, number, MT_ERROR));
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
|
||||
bpr.enabled = false;
|
||||
|
|
|
@ -207,6 +207,8 @@ function con_icommand (e)
|
|||
console.onInputBreak =
|
||||
function cli_ibreak(e)
|
||||
{
|
||||
var i;
|
||||
|
||||
if (!e.inputData)
|
||||
{ /* if no input data, just list the breakpoints */
|
||||
var bplist = console.breakpoints.childData;
|
||||
|
@ -218,7 +220,7 @@ function cli_ibreak(e)
|
|||
}
|
||||
|
||||
display (getMsg(MSN_BP_HEADER, bplist.length));
|
||||
for (var i = 0; i < bplist.length; ++i)
|
||||
for (i = 0; i < bplist.length; ++i)
|
||||
{
|
||||
var bpr = bplist[i];
|
||||
display (getMsg(MSN_BP_LINE, [i, bpr.fileName, bpr.line,
|
||||
|
@ -241,7 +243,7 @@ function cli_ibreak(e)
|
|||
return false;
|
||||
}
|
||||
|
||||
for (var i in matchingFiles)
|
||||
for (i in matchingFiles)
|
||||
setBreakpoint (matchingFiles[i], ary[2]);
|
||||
|
||||
return true;
|
||||
|
@ -292,7 +294,7 @@ function cli_icommands (e)
|
|||
if (!console.frames)
|
||||
{
|
||||
display (MSG_ERR_NO_STACK, MT_ERROR);
|
||||
return false;
|
||||
return;
|
||||
}
|
||||
cont();
|
||||
}
|
||||
|
|
|
@ -1113,7 +1113,7 @@ console.stackView.getCellProperties =
|
|||
function sv_cellprops (index, colID, properties)
|
||||
{
|
||||
if (colID != "stack-col-0")
|
||||
return;
|
||||
return null;
|
||||
|
||||
var row = this.childData.locateChildByVisualRow(index);
|
||||
if (row)
|
||||
|
@ -1136,7 +1136,7 @@ console.projectView.getCellProperties =
|
|||
function pv_cellprops (index, colID, properties)
|
||||
{
|
||||
if (colID != "project-col-0")
|
||||
return;
|
||||
return null;
|
||||
|
||||
var row = this.childData.locateChildByVisualRow(index);
|
||||
if (row)
|
||||
|
|
|
@ -1113,7 +1113,7 @@ console.stackView.getCellProperties =
|
|||
function sv_cellprops (index, colID, properties)
|
||||
{
|
||||
if (colID != "stack-col-0")
|
||||
return;
|
||||
return null;
|
||||
|
||||
var row = this.childData.locateChildByVisualRow(index);
|
||||
if (row)
|
||||
|
@ -1136,7 +1136,7 @@ console.projectView.getCellProperties =
|
|||
function pv_cellprops (index, colID, properties)
|
||||
{
|
||||
if (colID != "project-col-0")
|
||||
return;
|
||||
return null;
|
||||
|
||||
var row = this.childData.locateChildByVisualRow(index);
|
||||
if (row)
|
||||
|
|
Загрузка…
Ссылка в новой задаче