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

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

Issue 1053673008: Initial re-write of analysis context for the new task model (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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/dart_test.dart
diff --git a/pkg/analyzer/test/src/task/dart_test.dart b/pkg/analyzer/test/src/task/dart_test.dart
index 6b04cca579ba166ee7e502398a1e28f5aca26329..6108ee7769dae372f4ab3e930ed5e6d71402d64c 100644
--- a/pkg/analyzer/test/src/task/dart_test.dart
+++ b/pkg/analyzer/test/src/task/dart_test.dart
@@ -163,7 +163,8 @@ class C = B with M;
@reflectiveTest
class BuildCompilationUnitElementTaskTest extends _AbstractDartTaskTest {
test_buildInputs() {
- LibrarySpecificUnit target = new LibrarySpecificUnit(emptySource, emptySource);
+ LibrarySpecificUnit target =
+ new LibrarySpecificUnit(emptySource, emptySource);
Map<String, TaskInput> inputs =
BuildCompilationUnitElementTask.buildInputs(target);
expect(inputs, isNotNull);
@@ -1910,7 +1911,7 @@ class _AbstractDartTaskTest extends EngineTestCase {
}
}
-class _MockContext extends TypedMock implements ExtendedAnalysisContext {
+class _MockContext extends TypedMock implements InternalAnalysisContext {
AnalysisOptionsImpl analysisOptions = new AnalysisOptionsImpl();
SourceFactory sourceFactory;
TypeProvider typeProvider;

Powered by Google App Engine
This is Rietveld 408576698