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

Side by Side Diff: pkg/analysis_server/test/integration/integration_test_methods.dart

Issue 544273003: Initial support for execution domain (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed formatting 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/spec/generate_files". 7 // "pkg/analysis_server/spec/generate_files".
8 8
9 /** 9 /**
10 * Convenience methods for running integration tests 10 * Convenience methods for running integration tests
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 return server.send("execution.setSubscriptions", params) 1324 return server.send("execution.setSubscriptions", params)
1325 .then((result) { 1325 .then((result) {
1326 if (checkTypes) { 1326 if (checkTypes) {
1327 expect(result, isExecutionSetSubscriptionsResult); 1327 expect(result, isExecutionSetSubscriptionsResult);
1328 } 1328 }
1329 return result; 1329 return result;
1330 }); 1330 });
1331 } 1331 }
1332 1332
1333 /** 1333 /**
1334 * Reports information needed to allow applications within the given context 1334 * Reports information needed to allow applications to be launched.
1335 * to be launched.
1336 * 1335 *
1337 * This notification is not subscribed to by default. Clients can subscribe 1336 * This notification is not subscribed to by default. Clients can subscribe
1338 * by including the value "LAUNCH_DATA" in the list of services passed in a 1337 * by including the value "LAUNCH_DATA" in the list of services passed in an
1339 * execution.setSubscriptions request. 1338 * execution.setSubscriptions request.
1340 * 1339 *
1341 * Parameters 1340 * Parameters
1342 * 1341 *
1343 * executables ( List<ExecutableFile> ) 1342 * executables ( List<ExecutableFile> )
1344 * 1343 *
1345 * A list of the files that are executable in the given context. This list 1344 * A list of the files that are executable. This list replaces any previous
1346 * replaces any previous list provided for the given context. 1345 * list provided.
1347 * 1346 *
1348 * dartToHtml ( Map<FilePath, List<FilePath>> ) 1347 * dartToHtml ( Map<FilePath, List<FilePath>> )
1349 * 1348 *
1350 * A mapping from the paths of Dart files that are referenced by HTML files 1349 * A mapping from the paths of Dart files that are referenced by HTML files
1351 * to a list of the HTML files that reference the Dart files. 1350 * to a list of the HTML files that reference the Dart files.
1352 * 1351 *
1353 * htmlToDart ( Map<FilePath, List<FilePath>> ) 1352 * htmlToDart ( Map<FilePath, List<FilePath>> )
1354 * 1353 *
1355 * A mapping from the paths of HTML files that reference Dart files to a 1354 * A mapping from the paths of HTML files that reference Dart files to a
1356 * list of the Dart files they reference. 1355 * list of the Dart files they reference.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1458 case "execution.launchData": 1457 case "execution.launchData":
1459 expect(params, isExecutionLaunchDataParams); 1458 expect(params, isExecutionLaunchDataParams);
1460 _onExecutionLaunchData.add(params); 1459 _onExecutionLaunchData.add(params);
1461 break; 1460 break;
1462 default: 1461 default:
1463 fail('Unexpected notification: $event'); 1462 fail('Unexpected notification: $event');
1464 break; 1463 break;
1465 } 1464 }
1466 } 1465 }
1467 } 1466 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/domain_execution_test.dart ('k') | pkg/analysis_server/test/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698