| 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 6042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6053 * - 0x04 - set if the element was declared to be ‘final’ | 6053 * - 0x04 - set if the element was declared to be ‘final’ |
| 6054 * - 0x08 - set if the element is a static member of a class or is a | 6054 * - 0x08 - set if the element is a static member of a class or is a |
| 6055 * top-level function or field | 6055 * top-level function or field |
| 6056 * - 0x10 - set if the element is private | 6056 * - 0x10 - set if the element is private |
| 6057 * - 0x20 - set if the element is deprecated | 6057 * - 0x20 - set if the element is deprecated |
| 6058 */ | 6058 */ |
| 6059 int flags; | 6059 int flags; |
| 6060 | 6060 |
| 6061 /** | 6061 /** |
| 6062 * The parameter list for the element. If the element is not a method or | 6062 * The parameter list for the element. If the element is not a method or |
| 6063 * function this field will not be defined. If the element has zero | 6063 * function this field will not be defined. If the element doesn't have |
| 6064 * parameters, this field will have a value of "()". | 6064 * parameters (e.g. getter), this field will not be defined. If the element |
| 6065 * has zero parameters, this field will have a value of "()". |
| 6065 */ | 6066 */ |
| 6066 String parameters; | 6067 String parameters; |
| 6067 | 6068 |
| 6068 /** | 6069 /** |
| 6069 * The return type of the element. If the element is not a method or function | 6070 * The return type of the element. If the element is not a method or function |
| 6070 * this field will not be defined. If the element does not have a declared | 6071 * this field will not be defined. If the element does not have a declared |
| 6071 * return type, this field will contain an empty string. | 6072 * return type, this field will contain an empty string. |
| 6072 */ | 6073 */ |
| 6073 String returnType; | 6074 String returnType; |
| 6074 | 6075 |
| (...skipping 4644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10719 return false; | 10720 return false; |
| 10720 } | 10721 } |
| 10721 | 10722 |
| 10722 @override | 10723 @override |
| 10723 int get hashCode { | 10724 int get hashCode { |
| 10724 int hash = 0; | 10725 int hash = 0; |
| 10725 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 10726 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 10726 return _JenkinsSmiHash.finish(hash); | 10727 return _JenkinsSmiHash.finish(hash); |
| 10727 } | 10728 } |
| 10728 } | 10729 } |
| OLD | NEW |