| 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 4453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4464 fbBuilder.addOffset(3, offset_executables); | 4464 fbBuilder.addOffset(3, offset_executables); |
| 4465 } | 4465 } |
| 4466 return fbBuilder.endTable(); | 4466 return fbBuilder.endTable(); |
| 4467 } | 4467 } |
| 4468 } | 4468 } |
| 4469 | 4469 |
| 4470 /** | 4470 /** |
| 4471 * Unlinked summary information about a specific name contributed by a | 4471 * Unlinked summary information about a specific name contributed by a |
| 4472 * compilation unit to a library's public namespace. | 4472 * compilation unit to a library's public namespace. |
| 4473 * | 4473 * |
| 4474 * TODO(paulberry): add a count of generic parameters, so that resynthesis | |
| 4475 * doesn't have to peek into the library to obtain this info. | |
| 4476 * | |
| 4477 * TODO(paulberry): some of this information is redundant with information | 4474 * TODO(paulberry): some of this information is redundant with information |
| 4478 * elsewhere in the summary. Consider reducing the redundancy to reduce | 4475 * elsewhere in the summary. Consider reducing the redundancy to reduce |
| 4479 * summary size. | 4476 * summary size. |
| 4480 */ | 4477 */ |
| 4481 abstract class UnlinkedPublicName extends base.SummaryClass { | 4478 abstract class UnlinkedPublicName extends base.SummaryClass { |
| 4482 | 4479 |
| 4483 /** | 4480 /** |
| 4484 * The name itself. | 4481 * The name itself. |
| 4485 */ | 4482 */ |
| 4486 String get name; | 4483 String get name; |
| (...skipping 1607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6094 "type": type, | 6091 "type": type, |
| 6095 "constExpr": constExpr, | 6092 "constExpr": constExpr, |
| 6096 "isStatic": isStatic, | 6093 "isStatic": isStatic, |
| 6097 "isFinal": isFinal, | 6094 "isFinal": isFinal, |
| 6098 "isConst": isConst, | 6095 "isConst": isConst, |
| 6099 "propagatedTypeSlot": propagatedTypeSlot, | 6096 "propagatedTypeSlot": propagatedTypeSlot, |
| 6100 "inferredTypeSlot": inferredTypeSlot, | 6097 "inferredTypeSlot": inferredTypeSlot, |
| 6101 }; | 6098 }; |
| 6102 } | 6099 } |
| 6103 | 6100 |
| OLD | NEW |