| 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 10520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10531 * extracted. | 10531 * extracted. |
| 10532 */ | 10532 */ |
| 10533 int offset; | 10533 int offset; |
| 10534 | 10534 |
| 10535 /** | 10535 /** |
| 10536 * The length of the expression or statements that will be extracted. | 10536 * The length of the expression or statements that will be extracted. |
| 10537 */ | 10537 */ |
| 10538 int length; | 10538 int length; |
| 10539 | 10539 |
| 10540 /** | 10540 /** |
| 10541 * The proposed return type for the method. | 10541 * The proposed return type for the method. If the returned element does not |
| 10542 * have a declared return type, this field will contain an empty string. |
| 10542 */ | 10543 */ |
| 10543 String returnType; | 10544 String returnType; |
| 10544 | 10545 |
| 10545 /** | 10546 /** |
| 10546 * The proposed names for the method. | 10547 * The proposed names for the method. |
| 10547 */ | 10548 */ |
| 10548 List<String> names; | 10549 List<String> names; |
| 10549 | 10550 |
| 10550 /** | 10551 /** |
| 10551 * True if a getter could be created rather than a method. | 10552 * True if a getter could be created rather than a method. |
| (...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11306 return false; | 11307 return false; |
| 11307 } | 11308 } |
| 11308 | 11309 |
| 11309 @override | 11310 @override |
| 11310 int get hashCode { | 11311 int get hashCode { |
| 11311 int hash = 0; | 11312 int hash = 0; |
| 11312 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 11313 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 11313 return _JenkinsSmiHash.finish(hash); | 11314 return _JenkinsSmiHash.finish(hash); |
| 11314 } | 11315 } |
| 11315 } | 11316 } |
| OLD | NEW |