Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 200613002: Forgotten change in analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analyzer/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index 27bda8ce67ec7261bf29956501cfeaebc59082de..be82258751f4cb6a9350eacd22bbdc5beb3d4c2f 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -9312,7 +9312,7 @@ class WorkManager_WorkIterator {
*
* @return `true` if there is another [Source] available for processing
*/
- bool get hasNext => _queueIndex < _workQueues.length;
+ bool get hasNext => _queueIndex < WorkManager_this._workQueues.length;
/**
* Return the next [Source] available for processing and advance so that the returned
@@ -9338,7 +9338,7 @@ class WorkManager_WorkIterator {
if (_index >= WorkManager_this._workQueues[_queueIndex].length) {
_index = 0;
_queueIndex++;
- while (_queueIndex < _workQueues.length && WorkManager_this._workQueues[_queueIndex].isEmpty) {
+ while (_queueIndex < WorkManager_this._workQueues.length && WorkManager_this._workQueues[_queueIndex].isEmpty) {
_queueIndex++;
}
}
« no previous file with comments | « no previous file | pkg/analyzer/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698