| 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 9465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9476 */ | 9476 */ |
| 9477 String name; | 9477 String name; |
| 9478 | 9478 |
| 9479 /** | 9479 /** |
| 9480 * The parameters that should be defined for the method. | 9480 * The parameters that should be defined for the method. |
| 9481 * | 9481 * |
| 9482 * It is an error if a REQUIRED or NAMED parameter follows a POSITIONAL | 9482 * It is an error if a REQUIRED or NAMED parameter follows a POSITIONAL |
| 9483 * parameter. It is an error if a REQUIRED or POSITIONAL parameter follows a | 9483 * parameter. It is an error if a REQUIRED or POSITIONAL parameter follows a |
| 9484 * NAMED parameter. | 9484 * NAMED parameter. |
| 9485 * | 9485 * |
| 9486 * - To change the order and/or update proposed paramerers, add parameters | 9486 * - To change the order and/or update proposed parameters, add parameters |
| 9487 * with the same identifiers as proposed. | 9487 * with the same identifiers as proposed. |
| 9488 * - To add new parameters, omit their identifier. | 9488 * - To add new parameters, omit their identifier. |
| 9489 * - To remove some parameters, omit them in this list. | 9489 * - To remove some parameters, omit them in this list. |
| 9490 */ | 9490 */ |
| 9491 List<RefactoringMethodParameter> parameters; | 9491 List<RefactoringMethodParameter> parameters; |
| 9492 | 9492 |
| 9493 /** | 9493 /** |
| 9494 * True if all occurrences of the expression or statements should be replaced | 9494 * True if all occurrences of the expression or statements should be replaced |
| 9495 * by an invocation of the method. The expression or statements used to | 9495 * by an invocation of the method. The expression or statements used to |
| 9496 * initiate the refactoring will always be replaced. | 9496 * initiate the refactoring will always be replaced. |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9996 return false; | 9996 return false; |
| 9997 } | 9997 } |
| 9998 | 9998 |
| 9999 @override | 9999 @override |
| 10000 int get hashCode { | 10000 int get hashCode { |
| 10001 int hash = 0; | 10001 int hash = 0; |
| 10002 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 10002 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 10003 return _JenkinsSmiHash.finish(hash); | 10003 return _JenkinsSmiHash.finish(hash); |
| 10004 } | 10004 } |
| 10005 } | 10005 } |
| OLD | NEW |