mirror of https://github.com/tc39/test262.git
fix
This commit is contained in:
parent
4be59efd30
commit
429c60ec38
|
@ -30,7 +30,7 @@ const iter = {
|
|||
[Symbol.iterator]: function() {
|
||||
return {
|
||||
return: function() {
|
||||
returnCount += 1;
|
||||
++returnCount;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ const iter = {
|
|||
[Symbol.iterator]: function() {
|
||||
return {
|
||||
return: function() {
|
||||
returnCount += 1;
|
||||
++returnCount;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ const iter = {
|
|||
[Symbol.iterator]: function() {
|
||||
return {
|
||||
return: function() {
|
||||
returnCount += 1;
|
||||
++returnCount;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ const iter = {
|
|||
[Symbol.iterator]: function() {
|
||||
return {
|
||||
return: function() {
|
||||
returnCount += 1;
|
||||
++returnCount;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue