mirror of https://github.com/tc39/test262.git
Generate tests
This commit is contained in:
parent
ac19f339e7
commit
73db72baad
|
@ -51,6 +51,9 @@ var thisValue = null;
|
|||
var args = null;
|
||||
var iterable = {};
|
||||
var iterator = {
|
||||
next() {
|
||||
throw new Test262Error();
|
||||
},
|
||||
return: function() {
|
||||
returnCount += 1;
|
||||
thisValue = this;
|
||||
|
|
|
@ -60,6 +60,9 @@ var thisValue = null;
|
|||
var args = null;
|
||||
var iterable = {};
|
||||
var iterator = {
|
||||
next() {
|
||||
throw new Test262Error();
|
||||
},
|
||||
return: function() {
|
||||
returnCount += 1;
|
||||
thisValue = this;
|
||||
|
|
Loading…
Reference in New Issue