This commit is contained in:
Marja Hölttä 2020-04-28 10:38:01 +02:00 committed by Rick Waldron
parent 4be59efd30
commit 429c60ec38
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ const iter = { 
[Symbol.iterator]: function() { [Symbol.iterator]: function() {
return { return {
return: function() { return: function() {
returnCount += 1; ++returnCount;
} }
}; };
} }

View File

@ -27,7 +27,7 @@ const iter = { 
[Symbol.iterator]: function() { [Symbol.iterator]: function() {
return { return {
return: function() { return: function() {
returnCount += 1; ++returnCount;
} }
}; };
} }

View File

@ -27,7 +27,7 @@ const iter = { 
[Symbol.iterator]: function() { [Symbol.iterator]: function() {
return { return {
return: function() { return: function() {
returnCount += 1; ++returnCount;
} }
}; };
} }

View File

@ -30,7 +30,7 @@ const iter = { 
[Symbol.iterator]: function() { [Symbol.iterator]: function() {
return { return {
return: function() { return: function() {
returnCount += 1; ++returnCount;
} }
}; };
} }