| 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 part of protocol; | 9 part of protocol; |
| 10 /** | 10 /** |
| (...skipping 5821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5832 * if the suggested element is not a member of a class. | 5832 * if the suggested element is not a member of a class. |
| 5833 */ | 5833 */ |
| 5834 String declaringType; | 5834 String declaringType; |
| 5835 | 5835 |
| 5836 /** | 5836 /** |
| 5837 * Information about the element reference being suggested. | 5837 * Information about the element reference being suggested. |
| 5838 */ | 5838 */ |
| 5839 Element element; | 5839 Element element; |
| 5840 | 5840 |
| 5841 /** | 5841 /** |
| 5842 * The return type of the getter, function or method being suggested. This | 5842 * The return type of the getter, function or method or the type of the field |
| 5843 * field is omitted if the suggested element is not a getter, function or | 5843 * being suggested. This field is omitted if the suggested element is not a |
| 5844 * method. | 5844 * getter, function or method. |
| 5845 */ | 5845 */ |
| 5846 String returnType; | 5846 String returnType; |
| 5847 | 5847 |
| 5848 /** | 5848 /** |
| 5849 * The names of the parameters of the function or method being suggested. | 5849 * The names of the parameters of the function or method being suggested. |
| 5850 * This field is omitted if the suggested element is not a setter, function | 5850 * This field is omitted if the suggested element is not a setter, function |
| 5851 * or method. | 5851 * or method. |
| 5852 */ | 5852 */ |
| 5853 List<String> parameterNames; | 5853 List<String> parameterNames; |
| 5854 | 5854 |
| (...skipping 5101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10956 return false; | 10956 return false; |
| 10957 } | 10957 } |
| 10958 | 10958 |
| 10959 @override | 10959 @override |
| 10960 int get hashCode { | 10960 int get hashCode { |
| 10961 int hash = 0; | 10961 int hash = 0; |
| 10962 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 10962 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 10963 return _JenkinsSmiHash.finish(hash); | 10963 return _JenkinsSmiHash.finish(hash); |
| 10964 } | 10964 } |
| 10965 } | 10965 } |
| OLD | NEW |