Remove unused variables

Fixes gh-597
This commit is contained in:
Leonardo Balter 2016-06-21 13:03:22 -04:00
parent 9370371ac5
commit ac628975a3
No known key found for this signature in database
GPG Key ID: 3151533059133F60
22 changed files with 0 additions and 22 deletions

View File

@ -14,7 +14,6 @@ description: Array.prototype.every - 'length' is property of the global object
return val > 11;
}
var oldLen = this.length;
this[0] = 12;
this[1] = 11;
this[2] = 9;

View File

@ -16,7 +16,6 @@ description: >
}
}
var oldLen = this.length;
this[0] = 11;
this.length = 1;

View File

@ -10,7 +10,6 @@ description: Array.prototype.filter - 'length' is property of the global object
return obj.length === 2;
}
var oldLen = this.length;
this[0] = 12;
this[1] = 11;
this[2] = 9;

View File

@ -12,7 +12,6 @@ description: >
return idx === 0 && val === 11;
}
var oldLen = this.length;
this[0] = 11;
this.length = 1;
var newArr = Array.prototype.filter.call(this, callbackfn);

View File

@ -11,7 +11,6 @@ description: Array.prototype.forEach - 'length' is property of the global object
result = (obj.length === 2);
}
var oldLen = this.length;
this[0] = 12;
this[1] = 11;
this[2] = 9;

View File

@ -16,7 +16,6 @@ description: >
}
}
var oldLen = this.length;
this[0] = 11;
this.length = 1;

View File

@ -6,7 +6,6 @@ es5id: 15.4.4.14-1-17
description: Array.prototype.indexOf applied to the global object
---*/
var oldLen = this.length;
this[1] = true;
this.length = 2;

View File

@ -8,7 +8,6 @@ description: Array.prototype.indexOf - 'length' is property of the global object
var targetObj = {};
var oldLen = this.length;
this.length = 2;
this[1] = targetObj;

View File

@ -8,7 +8,6 @@ description: Array.prototype.indexOf - This object is the global object
var targetObj = {};
var oldLen = this.length;
this[0] = targetObj;
this[100] = "100";
this[200] = "200";

View File

@ -8,7 +8,6 @@ description: Array.prototype.lastIndexOf applied to the global object
var targetObj = ["global"];
var oldLen = this.length;
this[1] = targetObj;
this.length = 3;

View File

@ -10,7 +10,6 @@ description: >
var targetObj = {};
var oldLen = this.length;
this.length = 2;
this[1] = targetObj;

View File

@ -8,7 +8,6 @@ description: Array.prototype.lastIndexOf - This object is the global object
var targetObj = {};
var oldLen = this.length;
this[0] = targetObj;
this[100] = "100";
this[200] = "200";

View File

@ -12,7 +12,6 @@ description: >
return val > 10;
}
var oldLen = this.length;
this[0] = 12;
this[1] = 11;
this[2] = 9;

View File

@ -17,7 +17,6 @@ description: >
return false;
}
var oldLen = this.length;
this[0] = kValue;
this.length = 2;

View File

@ -10,7 +10,6 @@ description: Array.prototype.reduce - 'length' is property of the global object
return (obj.length === 2);
}
var oldLen = this.length;
this[0] = 12;
this[1] = 11;
this[2] = 9;

View File

@ -15,7 +15,6 @@ description: >
}
}
var oldLen = this.length;
this[0] = 0;
this[1] = 1;
this[2] = 2;

View File

@ -16,7 +16,6 @@ description: >
}
}
var oldLen = this.length;
this[0] = 0;
this[1] = 1;
this.length = 2;

View File

@ -16,7 +16,6 @@ var global = this;
return obj.length === global.length;
}
var oldLen = this.length;
this[0] = 12;
this[1] = 11;
this[2] = 9;

View File

@ -15,7 +15,6 @@ description: >
}
}
var oldLen = this.length;
this[0] = 0;
this[1] = 1;
this[2] = 2;

View File

@ -15,7 +15,6 @@ description: >
}
}
var oldLen = this.length;
this[0] = 0;
this[1] = 1;
this[2] = 2;

View File

@ -14,7 +14,6 @@ description: Array.prototype.some - 'length' is property of the global object
return val > 11;
}
var oldLen = this.length;
this[0] = 9;
this[1] = 11;
this[2] = 12;

View File

@ -15,7 +15,6 @@ description: >
return false;
}
var oldLen = this.length;
this[0] = 11;
this.length = 1;