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

Unified Diff: pkg/analysis_server/test/analysis_abstract.dart

Issue 402333006: Implementation of the 'edit.getFixes' API in server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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/analysis_abstract.dart
diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
index e14d3d1cd6dd9b6c6fe4ece31384217d6c562274..0cf7558ef6e246335771f780bbb3a4d4146d1d03 100644
--- a/pkg/analysis_server/test/analysis_abstract.dart
+++ b/pkg/analysis_server/test/analysis_abstract.dart
@@ -261,21 +261,3 @@ class AbstractAnalysisTest {
return code as String;
}
}
-
-
-class AnalysisError {
- final String file;
- final String errorCode;
- final int offset;
- final int length;
- final String message;
- final String correction;
- AnalysisError(this.file, this.errorCode, this.offset, this.length,
- this.message, this.correction);
-
- @override
- String toString() {
- return 'NotificationError(file=$file; errorCode=$errorCode; '
- 'offset=$offset; length=$length; message=$message)';
- }
-}

Powered by Google App Engine
This is Rietveld 408576698