| 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/spec/generate_files". | 7 // "pkg/analysis_server/spec/generate_files". |
| 8 | 8 |
| 9 part of protocol; | 9 part of protocol; |
| 10 /** | 10 /** |
| (...skipping 4180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4191 * execution.launchData params | 4191 * execution.launchData params |
| 4192 * | 4192 * |
| 4193 * { | 4193 * { |
| 4194 * "executables": List<ExecutableFile> | 4194 * "executables": List<ExecutableFile> |
| 4195 * "dartToHtml": Map<FilePath, List<FilePath>> | 4195 * "dartToHtml": Map<FilePath, List<FilePath>> |
| 4196 * "htmlToDart": Map<FilePath, List<FilePath>> | 4196 * "htmlToDart": Map<FilePath, List<FilePath>> |
| 4197 * } | 4197 * } |
| 4198 */ | 4198 */ |
| 4199 class ExecutionLaunchDataParams implements HasToJson { | 4199 class ExecutionLaunchDataParams implements HasToJson { |
| 4200 /** | 4200 /** |
| 4201 * A list of the files that are executable in the given context. This list | 4201 * A list of the files that are executable. This list replaces any previous |
| 4202 * replaces any previous list provided for the given context. | 4202 * list provided. |
| 4203 */ | 4203 */ |
| 4204 List<ExecutableFile> executables; | 4204 List<ExecutableFile> executables; |
| 4205 | 4205 |
| 4206 /** | 4206 /** |
| 4207 * A mapping from the paths of Dart files that are referenced by HTML files | 4207 * A mapping from the paths of Dart files that are referenced by HTML files |
| 4208 * to a list of the HTML files that reference the Dart files. | 4208 * to a list of the HTML files that reference the Dart files. |
| 4209 */ | 4209 */ |
| 4210 Map<String, List<String>> dartToHtml; | 4210 Map<String, List<String>> dartToHtml; |
| 4211 | 4211 |
| 4212 /** | 4212 /** |
| (...skipping 5656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9869 return false; | 9869 return false; |
| 9870 } | 9870 } |
| 9871 | 9871 |
| 9872 @override | 9872 @override |
| 9873 int get hashCode { | 9873 int get hashCode { |
| 9874 int hash = 0; | 9874 int hash = 0; |
| 9875 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 9875 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 9876 return _JenkinsSmiHash.finish(hash); | 9876 return _JenkinsSmiHash.finish(hash); |
| 9877 } | 9877 } |
| 9878 } | 9878 } |
| OLD | NEW |