| 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 5553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5564 * IMPORT | 5564 * IMPORT |
| 5565 * IDENTIFIER | 5565 * IDENTIFIER |
| 5566 * INVOCATION | 5566 * INVOCATION |
| 5567 * KEYWORD | 5567 * KEYWORD |
| 5568 * NAMED_ARGUMENT | 5568 * NAMED_ARGUMENT |
| 5569 * OPTIONAL_ARGUMENT | 5569 * OPTIONAL_ARGUMENT |
| 5570 * PARAMETER | 5570 * PARAMETER |
| 5571 * } | 5571 * } |
| 5572 */ | 5572 */ |
| 5573 class CompletionSuggestionKind implements Enum { | 5573 class CompletionSuggestionKind implements Enum { |
| 5574 /** |
| 5575 * A list of arguments for the method or function that is being invoked. For |
| 5576 * this suggestion kind, the completion field is a textual representation of |
| 5577 * the invocation and the parameterNames, parameterTypes, and |
| 5578 * requiredParameterCount attributes are defined. |
| 5579 */ |
| 5574 static const ARGUMENT_LIST = const CompletionSuggestionKind._("ARGUMENT_LIST")
; | 5580 static const ARGUMENT_LIST = const CompletionSuggestionKind._("ARGUMENT_LIST")
; |
| 5575 | 5581 |
| 5576 static const IMPORT = const CompletionSuggestionKind._("IMPORT"); | 5582 static const IMPORT = const CompletionSuggestionKind._("IMPORT"); |
| 5577 | 5583 |
| 5578 /** | 5584 /** |
| 5579 * The element identifier should be inserted at the completion location. For | 5585 * The element identifier should be inserted at the completion location. For |
| 5580 * example "someMethod" in import 'myLib.dart' show someMethod; . For | 5586 * example "someMethod" in import 'myLib.dart' show someMethod; . For |
| 5581 * suggestions of this kind, the element attribute is defined and the | 5587 * suggestions of this kind, the element attribute is defined and the |
| 5582 * completion field is the element's identifier. | 5588 * completion field is the element's identifier. |
| 5583 */ | 5589 */ |
| (...skipping 4637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10221 return false; | 10227 return false; |
| 10222 } | 10228 } |
| 10223 | 10229 |
| 10224 @override | 10230 @override |
| 10225 int get hashCode { | 10231 int get hashCode { |
| 10226 int hash = 0; | 10232 int hash = 0; |
| 10227 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); | 10233 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); |
| 10228 return _JenkinsSmiHash.finish(hash); | 10234 return _JenkinsSmiHash.finish(hash); |
| 10229 } | 10235 } |
| 10230 } | 10236 } |
| OLD | NEW |