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

Unified Diff: pkg/analysis_server/test/index/store/typed_mocks.dart

Issue 362793004: Update analysis.errors notification to the newest spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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/analysis_server/test/index/store/typed_mocks.dart
diff --git a/pkg/analysis_server/test/index/store/typed_mocks.dart b/pkg/analysis_server/test/index/store/typed_mocks.dart
index 3ec5089eaa26ef35fedc49434d853682fab9a5a0..25303042eb5b30d7bd92216cfb70ea703d32986d 100644
--- a/pkg/analysis_server/test/index/store/typed_mocks.dart
+++ b/pkg/analysis_server/test/index/store/typed_mocks.dart
@@ -31,8 +31,7 @@ class MockCompilationUnitElement extends TypedMock implements
}
-class MockConstructorElement extends TypedMock implements
- ConstructorElement {
+class MockConstructorElement extends TypedMock implements ConstructorElement {
noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
}
@@ -122,6 +121,11 @@ class MockSource extends TypedMock implements Source {
}
+class SourceMock extends TypedMock implements Source {
+ noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
+}
+
+
class StringTypedMock extends TypedMock {
String _toString;
« no previous file with comments | « pkg/analysis_server/test/domain_analysis_test.dart ('k') | pkg/analysis_server/test/operation/operation_analysis_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698