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

Unified Diff: pkg/analysis_server/test/integration/integration_test_methods.dart

Issue 1453433002: Move diagnostics to `diagnostics` domain (#24931). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: master merge Created 5 years, 1 month 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/integration/integration_test_methods.dart
diff --git a/pkg/analysis_server/test/integration/integration_test_methods.dart b/pkg/analysis_server/test/integration/integration_test_methods.dart
index 5bfce6ac51a2f2d7f0bafeb703c1b700eee94073..24933ef92f1fe5d4c8023c45f9be33690aadf553 100644
--- a/pkg/analysis_server/test/integration/integration_test_methods.dart
+++ b/pkg/analysis_server/test/integration/integration_test_methods.dart
@@ -1637,11 +1637,11 @@ abstract class IntegrationTestMixin {
*
* The list of analysis contexts.
*/
- Future<ExperimentalGetDiagnosticsResult> sendExperimentalGetDiagnostics() {
- return server.send("experimental.getDiagnostics", null)
+ Future<DiagnosticGetDiagnosticsResult> sendDiagnosticGetDiagnostics() {
+ return server.send("diagnostic.getDiagnostics", null)
.then((result) {
ResponseDecoder decoder = new ResponseDecoder(null);
- return new ExperimentalGetDiagnosticsResult.fromJson(decoder, 'result', result);
+ return new DiagnosticGetDiagnosticsResult.fromJson(decoder, 'result', result);
});
}
« no previous file with comments | « pkg/analysis_server/test/domain_experimental_test.dart ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698