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

Unified Diff: pkg/analyzer/test/generated/engine_test.dart

Issue 2132073003: Validate cache consistency asynchronously. Compute modification times of physical files in a separa… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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/generated/engine_test.dart
diff --git a/pkg/analyzer/test/generated/engine_test.dart b/pkg/analyzer/test/generated/engine_test.dart
index b3ceaa58c0e7ebc100f19d963ba0f56476b7faeb..1d0871dac36aacc13ba470b96cf54a54967d4496 100644
--- a/pkg/analyzer/test/generated/engine_test.dart
+++ b/pkg/analyzer/test/generated/engine_test.dart
@@ -702,13 +702,13 @@ class TestAnalysisContext implements InternalAnalysisContext {
}
@override
- bool validateCacheConsistency() {
- fail("Unexpected invocation of validateCacheConsistency");
- return false;
+ void visitContentCache(ContentCacheVisitor visitor) {
+ fail("Unexpected invocation of visitContentCache");
}
@override
- void visitContentCache(ContentCacheVisitor visitor) {
- fail("Unexpected invocation of visitContentCache");
+ CacheConsistencyValidator get cacheConsistencyValidator {
+ fail("Unexpected invocation of cacheConsistencyValidator");
+ return null;
}
}

Powered by Google App Engine
This is Rietveld 408576698