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

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

Issue 880643005: Fix "reanalyze sources" when there are unsaved files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 1f7fc5bba0ffdc6bafd2d3a9b94ee2361bcc3e9a..f335070dcf52c72fe81d3e5ca0f96c6dd7c76730 100644
--- a/pkg/analyzer/test/generated/engine_test.dart
+++ b/pkg/analyzer/test/generated/engine_test.dart
@@ -6142,6 +6142,12 @@ class TestAnalysisContext implements InternalAnalysisContext {
return null;
}
@override
+ bool handleContentsChanged(Source source, String originalContents,
+ String newContents, bool notify) {
+ fail("Unexpected invocation of handleContentsChanged");
+ return false;
+ }
+ @override
bool isClientLibrary(Source librarySource) {
fail("Unexpected invocation of isClientLibrary");
return false;
@@ -6200,7 +6206,6 @@ class TestAnalysisContext implements InternalAnalysisContext {
void setContents(Source source, String contents) {
fail("Unexpected invocation of setContents");
}
-
@override
void visitCacheItems(void callback(Source source, SourceEntry dartEntry,
DataDescriptor rowDesc, CacheState state)) {

Powered by Google App Engine
This is Rietveld 408576698