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

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

Issue 1842623002: Fix up generated code after sorting analyzer source files. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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') | no next file » | 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 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after
1940 * Offset of the type parameter name relative to the beginning of the file. 1940 * Offset of the type parameter name relative to the beginning of the file.
1941 */ 1941 */
1942 nameOffset:uint (id: 1); 1942 nameOffset:uint (id: 1);
1943 } 1943 }
1944 1944
1945 /** 1945 /**
1946 * Unlinked summary information about a compilation unit ("part file"). 1946 * Unlinked summary information about a compilation unit ("part file").
1947 */ 1947 */
1948 table UnlinkedUnit { 1948 table UnlinkedUnit {
1949 /** 1949 /**
1950 * If this compilation unit was summarized in fallback mode, the path where
1951 * the compilation unit may be found on disk. Otherwise empty.
1952 *
1953 * When this field is non-empty, all other fields in the data structure have
1954 * their default values.
1955 */
1956 fallbackModePath:string (id: 16);
1957
1958 /**
1959 * Classes declared in the compilation unit. 1950 * Classes declared in the compilation unit.
1960 */ 1951 */
1961 classes:[UnlinkedClass] (id: 2); 1952 classes:[UnlinkedClass] (id: 2);
1962 1953
1963 /** 1954 /**
1964 * Code range of the unit. 1955 * Code range of the unit.
1965 */ 1956 */
1966 codeRange:CodeRange (id: 15); 1957 codeRange:CodeRange (id: 15);
1967 1958
1968 /** 1959 /**
1969 * Enums declared in the compilation unit. 1960 * Enums declared in the compilation unit.
1970 */ 1961 */
1971 enums:[UnlinkedEnum] (id: 12); 1962 enums:[UnlinkedEnum] (id: 12);
1972 1963
1973 /** 1964 /**
1974 * Top level executable objects (functions, getters, and setters) declared in 1965 * Top level executable objects (functions, getters, and setters) declared in
1975 * the compilation unit. 1966 * the compilation unit.
1976 */ 1967 */
1977 executables:[UnlinkedExecutable] (id: 4); 1968 executables:[UnlinkedExecutable] (id: 4);
1978 1969
1979 /** 1970 /**
1980 * Export declarations in the compilation unit. 1971 * Export declarations in the compilation unit.
1981 */ 1972 */
1982 exports:[UnlinkedExportNonPublic] (id: 13); 1973 exports:[UnlinkedExportNonPublic] (id: 13);
1983 1974
1984 /** 1975 /**
1976 * If this compilation unit was summarized in fallback mode, the path where
1977 * the compilation unit may be found on disk. Otherwise empty.
1978 *
1979 * When this field is non-empty, all other fields in the data structure have
1980 * their default values.
1981 */
1982 fallbackModePath:string (id: 16);
1983
1984 /**
1985 * Import declarations in the compilation unit. 1985 * Import declarations in the compilation unit.
1986 */ 1986 */
1987 imports:[UnlinkedImport] (id: 5); 1987 imports:[UnlinkedImport] (id: 5);
1988 1988
1989 /** 1989 /**
1990 * Annotations for the library declaration, or the empty list if there is no 1990 * Annotations for the library declaration, or the empty list if there is no
1991 * library declaration. 1991 * library declaration.
1992 */ 1992 */
1993 libraryAnnotations:[UnlinkedConst] (id: 14); 1993 libraryAnnotations:[UnlinkedConst] (id: 14);
1994 1994
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
2138 2138
2139 /** 2139 /**
2140 * If a local variable, the beginning of the visible range; zero otherwise. 2140 * If a local variable, the beginning of the visible range; zero otherwise.
2141 */ 2141 */
2142 visibleOffset:uint (id: 12); 2142 visibleOffset:uint (id: 12);
2143 } 2143 }
2144 2144
2145 root_type PackageBundle; 2145 root_type PackageBundle;
2146 2146
2147 file_identifier "PBdl"; 2147 file_identifier "PBdl";
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698