Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Side by Side Diff: pkg/analyzer/lib/src/summary/format.fbs

Issue 1944023002: Include all static class members in UnlinkedPublicName.members. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix incorrect upload (previously included changes from CL 1944773002) Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.dart ('k') | pkg/analyzer/lib/src/summary/idl.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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";
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.dart ('k') | pkg/analyzer/lib/src/summary/idl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698