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

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

Issue 1774913006: Add error codes to server protocol (#25958). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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/protocol_server_test.dart
diff --git a/pkg/analysis_server/test/protocol_server_test.dart b/pkg/analysis_server/test/protocol_server_test.dart
index 24d03a319156d8cf80b85048df92e397025becd9..3a164f049c272a4a6386d0d7f38f60e96c9744b1 100644
--- a/pkg/analysis_server/test/protocol_server_test.dart
+++ b/pkg/analysis_server/test/protocol_server_test.dart
@@ -69,6 +69,7 @@ class AnalysisErrorTest {
},
MESSAGE: 'my message',
CORRECTION: 'my correction',
+ CODE: 'ambiguous_export',
HAS_FIX: false
});
}
@@ -87,6 +88,7 @@ class AnalysisErrorTest {
START_COLUMN: 2
},
MESSAGE: 'my message',
+ CODE: 'ambiguous_export',
HAS_FIX: false
});
}
@@ -105,6 +107,7 @@ class AnalysisErrorTest {
START_COLUMN: -1
},
MESSAGE: 'my message',
+ CODE: 'ambiguous_export',
HAS_FIX: false
});
}

Powered by Google App Engine
This is Rietveld 408576698