OLD | NEW |
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 Loading... |
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 * | |
424 * A mapping from source directories to package roots that should override | 422 * A mapping from source directories to package roots that should override |
425 * the normal package: URI resolution mechanism. | 423 * the normal package: URI resolution mechanism. |
426 * | 424 * |
427 * If a package root is a directory, then the analyzer will behave as | 425 * If a package root is a directory, then the analyzer will behave as |
428 * though the associated source directory in the map contains a special | 426 * though the associated source directory in the map contains a special |
429 * pubspec.yaml file which resolves any package: URI to the corresponding | 427 * pubspec.yaml file which resolves any package: URI to the corresponding |
430 * path within that package root directory. The effect is the same as | 428 * path within that package root directory. The effect is the same as |
431 * specifying the package root directory as a "--package_root" parameter to | 429 * specifying the package root directory as a "--package_root" parameter to |
432 * the Dart VM when executing any Dart file inside the source directory. | 430 * the Dart VM when executing any Dart file inside the source directory. |
433 * | 431 * |
(...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1746 case "execution.launchData": | 1744 case "execution.launchData": |
1747 expect(params, isExecutionLaunchDataParams); | 1745 expect(params, isExecutionLaunchDataParams); |
1748 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); | 1746 _onExecutionLaunchData.add(new ExecutionLaunchDataParams.fromJson(decode
r, 'params', params)); |
1749 break; | 1747 break; |
1750 default: | 1748 default: |
1751 fail('Unexpected notification: $event'); | 1749 fail('Unexpected notification: $event'); |
1752 break; | 1750 break; |
1753 } | 1751 } |
1754 } | 1752 } |
1755 } | 1753 } |
OLD | NEW |