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 96bcb64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 26 deletions.
24 changes: 0 additions & 24 deletions build-system/eslint-rules/no-for-of-statement.js

This file was deleted.

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 (let task of this.queue_) {
if (task.resource == resource) {
task.priority = newLayoutPriority;
}
});
}

this.schedulePass();
}
Expand Down

0 comments on commit 96bcb64

Please sign in to comment.