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

Unified Diff: pkg/analyzer/test/src/task/test_support.dart

Issue 1147853002: Properly handle circular references among constants in the task model. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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
Index: pkg/analyzer/test/src/task/test_support.dart
diff --git a/pkg/analyzer/test/src/task/test_support.dart b/pkg/analyzer/test/src/task/test_support.dart
index 80cd7c3a4a2610ac88775644a04fa1d6816559af..5c5a1bf3730c982313b81a9d1bdaee2fc4310655 100644
--- a/pkg/analyzer/test/src/task/test_support.dart
+++ b/pkg/analyzer/test/src/task/test_support.dart
@@ -32,8 +32,12 @@ class TestAnalysisTask extends AnalysisTask {
*/
int value;
+ @override
+ final bool handlesDependencyCycles;
+
TestAnalysisTask(AnalysisContext context, AnalysisTarget target,
- {this.descriptor, this.exception, this.results, this.value: 1})
+ {this.descriptor, this.exception, this.results, this.value: 1,
+ this.handlesDependencyCycles: false})
scheglov 2015/05/19 19:25:42 Please keep these parameters sorted by name.
Paul Berry 2015/05/19 19:36:11 Done.
: super(context, target);
@override
« pkg/analyzer/test/src/task/inputs_test.dart ('K') | « pkg/analyzer/test/src/task/inputs_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698