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

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

Issue 2382053002: Remove unused option in server API (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « pkg/analysis_server/test/domain_server_test.dart ('k') | pkg/analysis_server/test/mocks.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 /** 9 /**
10 * Convenience methods for running integration tests 10 * Convenience methods for running integration tests
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 * 412 *
413 * A list of the files and directories that should be analyzed. 413 * A list of the files and directories that should be analyzed.
414 * 414 *
415 * excluded (List<FilePath>) 415 * excluded (List<FilePath>)
416 * 416 *
417 * A list of the files and directories within the included directories that 417 * A list of the files and directories within the included directories that
418 * should not be analyzed. 418 * should not be analyzed.
419 * 419 *
420 * packageRoots (optional Map<FilePath, FilePath>) 420 * packageRoots (optional Map<FilePath, FilePath>)
421 * 421 *
422 * Deprecated: This field is now ignored by server.
423 *
422 * A mapping from source directories to package roots that should override 424 * A mapping from source directories to package roots that should override
423 * the normal package: URI resolution mechanism. 425 * the normal package: URI resolution mechanism.
424 * 426 *
425 * If a package root is a directory, then the analyzer will behave as 427 * If a package root is a directory, then the analyzer will behave as
426 * though the associated source directory in the map contains a special 428 * though the associated source directory in the map contains a special
427 * pubspec.yaml file which resolves any package: URI to the corresponding 429 * pubspec.yaml file which resolves any package: URI to the corresponding
428 * path within that package root directory. The effect is the same as 430 * path within that package root directory. The effect is the same as
429 * specifying the package root directory as a "--package_root" parameter to 431 * specifying the package root directory as a "--package_root" parameter to
430 * the Dart VM when executing any Dart file inside the source directory. 432 * the Dart VM when executing any Dart file inside the source directory.
431 * 433 *
(...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 case "execution.launchData": 1746 case "execution.launchData":
1745 expect(params, isExecutionLaunchDataParams); 1747 expect(params, isExecutionLaunchDataParams);
1746 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params)); 1748 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode r, 'params', params));
1747 break; 1749 break;
1748 default: 1750 default:
1749 fail('Unexpected notification: $event'); 1751 fail('Unexpected notification: $event');
1750 break; 1752 break;
1751 } 1753 }
1752 } 1754 }
1753 } 1755 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/domain_server_test.dart ('k') | pkg/analysis_server/test/mocks.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698