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

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

Issue 2010993002: Migrate UnlinkedParam.defaultValue to UnlinkedExecutable.bodyExpr. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 1903 matching lines...) Expand 10 before | Expand all | Expand 10 after
1914 */ 1914 */
1915 table UnlinkedParam { 1915 table UnlinkedParam {
1916 /** 1916 /**
1917 * Annotations for this parameter. 1917 * Annotations for this parameter.
1918 */ 1918 */
1919 annotations:[UnlinkedConst] (id: 9); 1919 annotations:[UnlinkedConst] (id: 9);
1920 1920
1921 /** 1921 /**
1922 * Code range of the parameter. 1922 * Code range of the parameter.
1923 */ 1923 */
1924 codeRange:CodeRange (id: 14); 1924 codeRange:CodeRange (id: 7);
1925
1926 /**
1927 * If the parameter has a default value, the constant expression in the
1928 * default value. Note that the presence of this expression does not mean
1929 * that it is a valid, check [UnlinkedConst.isInvalid].
1930 */
1931 defaultValue:UnlinkedConst (id: 7);
1932 1925
1933 /** 1926 /**
1934 * If the parameter has a default value, the source text of the constant 1927 * If the parameter has a default value, the source text of the constant
1935 * expression in the default value. Otherwise the empty string. 1928 * expression in the default value. Otherwise the empty string.
1936 */ 1929 */
1937 defaultValueCode:string (id: 13); 1930 defaultValueCode:string (id: 13);
1938 1931
1939 /** 1932 /**
1940 * If this parameter's type is inferable, nonzero slot id identifying which 1933 * If this parameter's type is inferable, nonzero slot id identifying which
1941 * entry in [LinkedLibrary.types] contains the inferred type. If there is no 1934 * entry in [LinkedLibrary.types] contains the inferred type. If there is no
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
2376 2369
2377 /** 2370 /**
2378 * If a local variable, the beginning of the visible range; zero otherwise. 2371 * If a local variable, the beginning of the visible range; zero otherwise.
2379 */ 2372 */
2380 visibleOffset:uint (id: 12); 2373 visibleOffset:uint (id: 12);
2381 } 2374 }
2382 2375
2383 root_type PackageBundle; 2376 root_type PackageBundle;
2384 2377
2385 file_identifier "PBdl"; 2378 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