| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 "pkg/analyzer/tool/generate_files". | 6 // To regenerate the file, use the script "pkg/analyzer/tool/generate_files". |
| 7 | 7 |
| 8 library analyzer.src.summary.format; | 8 library analyzer.src.summary.format; |
| 9 | 9 |
| 10 import 'base.dart' as base; | 10 import 'base.dart' as base; |
| 11 import 'flat_buffers.dart' as fb; | 11 import 'flat_buffers.dart' as fb; |
| 12 | 12 |
| 13 /** | 13 /** |
| 14 * Enum used to indicate the kind of entity referred to by a | 14 * Enum used to indicate the kind of entity referred to by a |
| 15 * [LinkedReference]. | 15 * [LinkedReference]. |
| 16 */ | 16 */ |
| 17 enum ReferenceKind { | 17 enum ReferenceKind { |
| 18 /** | 18 /** |
| 19 * The entity is a class or enum. | 19 * The entity is a class or enum. |
| 20 */ | 20 */ |
| 21 classOrEnum, | 21 classOrEnum, |
| 22 | 22 |
| 23 /** | 23 /** |
| 24 * The entity is a constructor. | 24 * The entity is a constructor. |
| 25 */ | 25 */ |
| 26 constructor, | 26 constructor, |
| 27 | 27 |
| 28 /** | 28 /** |
| 29 * The entity is a static const field. | 29 * The entity is a getter or setter inside a class. Note: this is used in |
| 30 * the case where a constant refers to a static const declared inside a |
| 31 * class. |
| 30 */ | 32 */ |
| 31 constField, | 33 propertyAccessor, |
| 32 | 34 |
| 33 /** | 35 /** |
| 34 * The entity is a static method. | 36 * The entity is a method. |
| 35 */ | 37 */ |
| 36 staticMethod, | 38 method, |
| 37 | 39 |
| 38 /** | 40 /** |
| 39 * The `length` property access. | 41 * The `length` property access. |
| 40 */ | 42 */ |
| 41 length, | 43 length, |
| 42 | 44 |
| 43 /** | 45 /** |
| 44 * The entity is a typedef. | 46 * The entity is a typedef. |
| 45 */ | 47 */ |
| 46 typedef, | 48 typedef, |
| (...skipping 6050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6097 "type": type, | 6099 "type": type, |
| 6098 "constExpr": constExpr, | 6100 "constExpr": constExpr, |
| 6099 "isStatic": isStatic, | 6101 "isStatic": isStatic, |
| 6100 "isFinal": isFinal, | 6102 "isFinal": isFinal, |
| 6101 "isConst": isConst, | 6103 "isConst": isConst, |
| 6102 "propagatedTypeSlot": propagatedTypeSlot, | 6104 "propagatedTypeSlot": propagatedTypeSlot, |
| 6103 "inferredTypeSlot": inferredTypeSlot, | 6105 "inferredTypeSlot": inferredTypeSlot, |
| 6104 }; | 6106 }; |
| 6105 } | 6107 } |
| 6106 | 6108 |
| OLD | NEW |