| 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; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 * The entity is a static const field. | 29 * The entity is a static const field. |
| 30 */ | 30 */ |
| 31 constField, | 31 constField, |
| 32 | 32 |
| 33 /** | 33 /** |
| 34 * The entity is a static method. | 34 * The entity is a static method. |
| 35 */ | 35 */ |
| 36 staticMethod, | 36 staticMethod, |
| 37 | 37 |
| 38 /** | 38 /** |
| 39 * The `length` property access. |
| 40 */ |
| 41 length, |
| 42 |
| 43 /** |
| 39 * The entity is a typedef. | 44 * The entity is a typedef. |
| 40 */ | 45 */ |
| 41 typedef, | 46 typedef, |
| 42 | 47 |
| 43 /** | 48 /** |
| 44 * The entity is a top level function. | 49 * The entity is a top level function. |
| 45 */ | 50 */ |
| 46 topLevelFunction, | 51 topLevelFunction, |
| 47 | 52 |
| 48 /** | 53 /** |
| (...skipping 6049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6098 "type": type, | 6103 "type": type, |
| 6099 "constExpr": constExpr, | 6104 "constExpr": constExpr, |
| 6100 "isStatic": isStatic, | 6105 "isStatic": isStatic, |
| 6101 "isFinal": isFinal, | 6106 "isFinal": isFinal, |
| 6102 "isConst": isConst, | 6107 "isConst": isConst, |
| 6103 "propagatedTypeSlot": propagatedTypeSlot, | 6108 "propagatedTypeSlot": propagatedTypeSlot, |
| 6104 "inferredTypeSlot": inferredTypeSlot, | 6109 "inferredTypeSlot": inferredTypeSlot, |
| 6105 }; | 6110 }; |
| 6106 } | 6111 } |
| 6107 | 6112 |
| OLD | NEW |