| 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 | 8 |
| 9 /** | 9 /** |
| 10 * Kind of a source in the cache. | 10 * Kind of a source in the cache. |
| (...skipping 2003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2014 * summary size. | 2014 * summary size. |
| 2015 */ | 2015 */ |
| 2016 table UnlinkedPublicName { | 2016 table UnlinkedPublicName { |
| 2017 /** | 2017 /** |
| 2018 * The kind of object referred to by the name. | 2018 * The kind of object referred to by the name. |
| 2019 */ | 2019 */ |
| 2020 kind:ReferenceKind (id: 1); | 2020 kind:ReferenceKind (id: 1); |
| 2021 | 2021 |
| 2022 /** | 2022 /** |
| 2023 * If this [UnlinkedPublicName] is a class, the list of members which can be | 2023 * If this [UnlinkedPublicName] is a class, the list of members which can be |
| 2024 * referenced from constants or factory redirects - static constant fields, | 2024 * referenced statically - static fields, static methods, and constructors. |
| 2025 * static methods, and constructors. Otherwise empty. | 2025 * Otherwise empty. |
| 2026 * | 2026 * |
| 2027 * Unnamed constructors are not included since they do not constitute a | 2027 * Unnamed constructors are not included since they do not constitute a |
| 2028 * separate name added to any namespace. | 2028 * separate name added to any namespace. |
| 2029 */ | 2029 */ |
| 2030 members:[UnlinkedPublicName] (id: 2); | 2030 members:[UnlinkedPublicName] (id: 2); |
| 2031 | 2031 |
| 2032 /** | 2032 /** |
| 2033 * The name itself. | 2033 * The name itself. |
| 2034 */ | 2034 */ |
| 2035 name:string (id: 0); | 2035 name:string (id: 0); |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2362 | 2362 |
| 2363 /** | 2363 /** |
| 2364 * If a local variable, the beginning of the visible range; zero otherwise. | 2364 * If a local variable, the beginning of the visible range; zero otherwise. |
| 2365 */ | 2365 */ |
| 2366 visibleOffset:uint (id: 12); | 2366 visibleOffset:uint (id: 12); |
| 2367 } | 2367 } |
| 2368 | 2368 |
| 2369 root_type PackageBundle; | 2369 root_type PackageBundle; |
| 2370 | 2370 |
| 2371 file_identifier "PBdl"; | 2371 file_identifier "PBdl"; |
| OLD | NEW |