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

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

Issue 469673002: Add union types to the analysis server API spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/integration_tests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3c8f9531c384fd2b4a56a8e3a5cbfef2df63ff61..7d4ce879138ab68f8b57de9a5470ff0f3a0faefc 100644
--- a/pkg/analysis_server/test/integration/integration_test_methods.dart
+++ b/pkg/analysis_server/test/integration/integration_test_methods.dart
@@ -402,13 +402,13 @@ abstract class IntegrationTestMixin {
*
* Parameters
*
- * files ( Map<FilePath, object> )
+ * files ( Map<FilePath, AddContentOverlay | ChangeContentOverlay |
+ * RemoveContentOverlay> )
*
* A table mapping the files whose content has changed to a description of
- * the content change. Each value should be one of the following types:
- * AddContentOverlay, ChangeContentOverlay, or RemoveContentOverlay.
+ * the content change.
*/
- Future sendAnalysisUpdateContent(Map<String, Map<String, dynamic>> files, {bool checkTypes: true}) {
+ Future sendAnalysisUpdateContent(Map<String, Object> files, {bool checkTypes: true}) {
Map<String, dynamic> params = {};
params["files"] = files;
if (checkTypes) {
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/integration_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698