Index: editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart |
diff --git a/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart b/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart |
index 0e5647b3fbbf9c5cb8f946020ca540414ae8885d..8a60c1f0572b0d3c6d75b45b899d6a51aeeb59b6 100644 |
--- a/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart |
+++ b/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart |
@@ -8,7 +8,7 @@ class TestSource implements Source { |
AnalysisContext get context { |
throw new UnsupportedOperationException(); |
} |
- void getContents(Source_ContentReceiver receiver) { |
+ void getContentsToReceiver(Source_ContentReceiver receiver) { |
throw new UnsupportedOperationException(); |
} |
String get fullName { |
@@ -36,6 +36,9 @@ class TestSource implements Source { |
UriKind get uriKind { |
throw new UnsupportedOperationException(); |
} |
+ TimestampedData<String> get contents { |
+ throw new UnsupportedOperationException(); |
+ } |
} |
/** |