| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 import 'dart:convert' hide JsonDecoder; | 9 import 'dart:convert' hide JsonDecoder; |
| 10 | 10 |
| (...skipping 7579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7590 * { | 7590 * { |
| 7591 * "templates": List<PostfixTemplateDescriptor> | 7591 * "templates": List<PostfixTemplateDescriptor> |
| 7592 * } | 7592 * } |
| 7593 * | 7593 * |
| 7594 * Clients may not extend, implement or mix-in this class. | 7594 * Clients may not extend, implement or mix-in this class. |
| 7595 */ | 7595 */ |
| 7596 class EditListPostfixCompletionTemplatesResult implements ResponseResult { | 7596 class EditListPostfixCompletionTemplatesResult implements ResponseResult { |
| 7597 List<PostfixTemplateDescriptor> _templates; | 7597 List<PostfixTemplateDescriptor> _templates; |
| 7598 | 7598 |
| 7599 /** | 7599 /** |
| 7600 * The list of available template. | 7600 * The list of available templates. |
| 7601 */ | 7601 */ |
| 7602 List<PostfixTemplateDescriptor> get templates => _templates; | 7602 List<PostfixTemplateDescriptor> get templates => _templates; |
| 7603 | 7603 |
| 7604 /** | 7604 /** |
| 7605 * The list of available template. | 7605 * The list of available templates. |
| 7606 */ | 7606 */ |
| 7607 void set templates(List<PostfixTemplateDescriptor> value) { | 7607 void set templates(List<PostfixTemplateDescriptor> value) { |
| 7608 assert(value != null); | 7608 assert(value != null); |
| 7609 this._templates = value; | 7609 this._templates = value; |
| 7610 } | 7610 } |
| 7611 | 7611 |
| 7612 EditListPostfixCompletionTemplatesResult( | 7612 EditListPostfixCompletionTemplatesResult( |
| 7613 List<PostfixTemplateDescriptor> templates) { | 7613 List<PostfixTemplateDescriptor> templates) { |
| 7614 this.templates = templates; | 7614 this.templates = templates; |
| 7615 } | 7615 } |
| (...skipping 7106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14722 hash = JenkinsSmiHash.combine(hash, classElement.hashCode); | 14722 hash = JenkinsSmiHash.combine(hash, classElement.hashCode); |
| 14723 hash = JenkinsSmiHash.combine(hash, displayName.hashCode); | 14723 hash = JenkinsSmiHash.combine(hash, displayName.hashCode); |
| 14724 hash = JenkinsSmiHash.combine(hash, memberElement.hashCode); | 14724 hash = JenkinsSmiHash.combine(hash, memberElement.hashCode); |
| 14725 hash = JenkinsSmiHash.combine(hash, superclass.hashCode); | 14725 hash = JenkinsSmiHash.combine(hash, superclass.hashCode); |
| 14726 hash = JenkinsSmiHash.combine(hash, interfaces.hashCode); | 14726 hash = JenkinsSmiHash.combine(hash, interfaces.hashCode); |
| 14727 hash = JenkinsSmiHash.combine(hash, mixins.hashCode); | 14727 hash = JenkinsSmiHash.combine(hash, mixins.hashCode); |
| 14728 hash = JenkinsSmiHash.combine(hash, subclasses.hashCode); | 14728 hash = JenkinsSmiHash.combine(hash, subclasses.hashCode); |
| 14729 return JenkinsSmiHash.finish(hash); | 14729 return JenkinsSmiHash.finish(hash); |
| 14730 } | 14730 } |
| 14731 } | 14731 } |
| OLD | NEW |