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

Unified Diff: pkg/analyzer/test/services/test_utils.dart

Issue 184893003: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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/services/test_utils.dart
diff --git a/pkg/analyzer/test/services/test_utils.dart b/pkg/analyzer/test/services/test_utils.dart
index 2a95fb33c7ebf978c98eedf78d55c9d6b4a5cc42..b67ad1ff0167ce8c23f08849ac16a0eacd02c1d9 100644
--- a/pkg/analyzer/test/services/test_utils.dart
+++ b/pkg/analyzer/test/services/test_utils.dart
@@ -6,7 +6,7 @@ library test_utils;
import 'package:unittest/unittest.dart';
-import 'package:analyzer/src/generated/engine.dart' show AnalysisContext, AnalysisContextImpl;
+import 'package:analyzer/src/generated/engine.dart';
import 'package:analyzer/src/generated/source.dart';
import 'package:analyzer/src/generated/error.dart';
import 'package:analyzer/src/generated/scanner.dart';
@@ -162,7 +162,7 @@ class _TestSource implements Source {
AnalysisContext get context => _unsupported();
- void getContents(Source_ContentReceiver receiver) => _unsupported();
+ void getContentsToReceiver(Source_ContentReceiver receiver) => _unsupported();
String get fullName => _unsupported();
@@ -182,6 +182,7 @@ class _TestSource implements Source {
Source resolveRelative(Uri uri) => _unsupported();
+ TimestampedData<String> get contents => _unsupported();
}

Powered by Google App Engine
This is Rietveld 408576698