Bug 403621 - "fix various ArrayEnumerator implementations" [p=dao@mozilla.com (Dão Gottwald) r=Mano a1.9=schrep]

This commit is contained in:
reed@reedloden.com 2007-11-21 13:15:39 -08:00
Родитель f1fa6bedaf
Коммит 3e8c69da3b
6 изменённых файлов: 31 добавлений и 36 удалений

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

@ -167,7 +167,6 @@ function ArrayEnumerator(aItems) {
ArrayEnumerator.prototype = {
_index: 0,
_contents: [],
hasMoreElements: function() {
return this._index < this._contents.length;

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

@ -55,7 +55,6 @@ function ArrayEnumerator(array)
ArrayEnumerator.prototype = {
pos: 0,
array: null,
hasMoreElements: function() {
return this.pos < this.array.length;

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

@ -55,7 +55,6 @@ function ArrayEnumerator(array)
ArrayEnumerator.prototype = {
pos: 0,
array: null,
hasMoreElements: function() {
return this.pos < this.array.length;

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

@ -55,7 +55,6 @@ function ArrayEnumerator(array)
ArrayEnumerator.prototype = {
pos: 0,
array: null,
hasMoreElements: function() {
return this.pos < this.array.length;

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

@ -61,34 +61,33 @@ function APP_URI(aType)
return "urn:mimetype:externalApplication:" + aType;
}
function ArrayEnumerator(aItems)
{
this._index = 0;
function ArrayEnumerator(aItems) {
if (aItems) {
for (var i = 0; i < aItems.length; ++i) {
for (var i = 0; i < aItems.length; ++i) {
if (!aItems[i])
aItems.splice(i, 1);
aItems.splice(i--, 1);
}
this._contents = aItems;
} else {
this._contents = [];
}
this._contents = aItems || [];
}
this.push = function (aElement)
{
ArrayEnumerator.prototype = {
_index: 0,
hasMoreElements: function () {
return this._index < this._contents.length;
},
getNext: function () {
return this._contents[this._index++];
},
push: function (aElement) {
if (aElement)
this._contents.push(aElement);
};
this.hasMoreElements = function ()
{
return this._index < this._contents.length;
};
this.getNext = function ()
{
return this._contents[this._index++];
};
}
};
function HelperApps()

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

@ -909,25 +909,25 @@ function findClosestLocalizedResource(aDataSource, aResource) {
* @constructor
*/
function ArrayEnumerator(aItems) {
this._index = 0;
if (aItems) {
for (var i = 0; i < aItems.length; ++i) {
if (!aItems[i])
aItems.splice(i, 1);
aItems.splice(i--, 1);
}
this._contents = aItems;
} else {
this._contents = [];
}
this._contents = aItems;
}
ArrayEnumerator.prototype = {
_index: 0,
_contents: [],
hasMoreElements: function() {
hasMoreElements: function () {
return this._index < this._contents.length;
},
getNext: function() {
getNext: function () {
return this._contents[this._index++];
}
};
@ -939,19 +939,19 @@ ArrayEnumerator.prototype = {
* @constructor
*/
function FileEnumerator(files) {
this._index = 0;
if (files) {
for (var i = 0; i < files.length; ++i) {
if (!files[i])
files.splice(i, 1);
files.splice(i--, 1);
}
this._contents = files;
} else {
this._contents = [];
}
this._contents = files;
}
FileEnumerator.prototype = {
_index: 0,
_contents: [],
/**
* Gets the next file in the sequence.
@ -966,7 +966,7 @@ FileEnumerator.prototype = {
* Stop enumerating. Nothing to do here.
*/
close: function() {
},
}
};
/**