Skip to content

Commit

Permalink
runtime: allow for iterator polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
samouri committed May 6, 2021
1 parent 588a202 commit aedcdfc
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 30 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ module.exports = {
'local/no-dynamic-import': 2,
'local/no-es2015-number-props': 2,
'local/no-export-side-effect': 2,
'local/no-for-of-statement': 2,
'local/no-forbidden-terms': [
2,
forbiddenTermsGlobal,
Expand Down Expand Up @@ -276,7 +275,6 @@ module.exports = {
'local/always-call-chai-methods': 2,
'local/no-bigint': 0,
'local/no-dynamic-import': 0,
'local/no-for-of-statement': 0,
'local/no-function-async': 0,
'local/no-function-generator': 0,
'local/no-import-meta': 0,
Expand Down
1 change: 0 additions & 1 deletion build-system/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ module.exports = {
'local/no-bigint': 0,
'local/no-dynamic-import': 0,
'local/no-export-side-effect': 0,
'local/no-for-of-statement': 0,
'local/no-function-async': 0,
'local/no-function-generator': 0,
'local/no-has-own-property-method': 0,
Expand Down
24 changes: 0 additions & 24 deletions build-system/eslint-rules/no-for-of-statement.js

This file was deleted.

1 change: 0 additions & 1 deletion examples/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ module.exports = {
'local/no-dynamic-import': 0,
'local/no-es2015-number-props': 0,
'local/no-export-side-effect': 0,
'local/no-for-of-statement': 0,
'local/no-forbidden-terms': 0,
'local/no-function-async': 0,
'local/no-function-generator': 0,
Expand Down
4 changes: 2 additions & 2 deletions src/service/resources-impl.js
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,11 @@ export class ResourcesImpl {
resource.updateLayoutPriority(newLayoutPriority);

// Update affected tasks
this.queue_.forEach((task) => {
for (const task of this.queue_) {
if (task.resource == resource) {
task.priority = newLayoutPriority;
}
});
}

this.schedulePass();
}
Expand Down

0 comments on commit aedcdfc

Please sign in to comment.