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

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

Issue 596893002: Rework launch data (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated Java side Created 6 years, 3 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/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 bfb174ebec60c0dd1e4aec0229f14aa16e0155dc..7d0a90c1a986988040265b6324e49b034e7fe866 100644
--- a/pkg/analysis_server/test/integration/integration_test_methods.dart
+++ b/pkg/analysis_server/test/integration/integration_test_methods.dart
@@ -1344,7 +1344,7 @@ abstract class IntegrationTestMixin {
}
/**
- * Reports information needed to allow applications to be launched.
+ * Reports information needed to allow a single file to be launched.
*
* This notification is not subscribed to by default. Clients can subscribe
* by including the value "LAUNCH_DATA" in the list of services passed in an
@@ -1352,20 +1352,20 @@ abstract class IntegrationTestMixin {
*
* Parameters
*
- * executables ( List<ExecutableFile> )
+ * file ( FilePath )
*
- * A list of the files that are executable. This list replaces any previous
- * list provided.
+ * The file for which launch data is being provided. This will either be a
+ * Dart library or an HTML file.
*
- * dartToHtml ( Map<FilePath, List<FilePath>> )
+ * kind ( optional ExecutableKind )
*
- * A mapping from the paths of Dart files that are referenced by HTML files
- * to a list of the HTML files that reference the Dart files.
+ * The kind of the executable file. This field is omitted if the file is
+ * not a Dart file.
*
- * htmlToDart ( Map<FilePath, List<FilePath>> )
+ * referencedFiles ( optional List<FilePath> )
*
- * A mapping from the paths of HTML files that reference Dart files to a
- * list of the Dart files they reference.
+ * A list of the Dart files that are referenced by the file. This field is
+ * omitted if the file is not an HTML file.
*/
Stream onExecutionLaunchData;

Powered by Google App Engine
This is Rietveld 408576698