bug 103063, venkman strict warnings

r=samuel@sieb.net, sr=hyatt, a=asa
This commit is contained in:
rginda%netscape.com 2001-10-04 07:38:53 +00:00
Родитель 8e321ed4c9
Коммит ced33340be
6 изменённых файлов: 23 добавлений и 9 удалений

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

@ -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)