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

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

Issue 1642483002: Improve 'length' instance property reference encoding. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Improve using 'UnlinkedConstOperation.length'. Created 4 years, 10 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 | « no previous file | pkg/analyzer/lib/src/summary/prelink.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 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 18 matching lines...) Expand all
29 * The entity is a static const field. 29 * The entity is a static const field.
30 */ 30 */
31 constField, 31 constField,
32 32
33 /** 33 /**
34 * The entity is a static method. 34 * The entity is a static method.
35 */ 35 */
36 staticMethod, 36 staticMethod,
37 37
38 /** 38 /**
39 * The `length` property access.
40 */
41 length,
42
43 /**
39 * The entity is a typedef. 44 * The entity is a typedef.
40 */ 45 */
41 typedef, 46 typedef,
42 47
43 /** 48 /**
44 * The entity is a top level function. 49 * The entity is a top level function.
45 */ 50 */
46 topLevelFunction, 51 topLevelFunction,
47 52
48 /** 53 /**
(...skipping 6049 matching lines...) Expand 10 before | Expand all | Expand 10 after
6098 "type": type, 6103 "type": type,
6099 "constExpr": constExpr, 6104 "constExpr": constExpr,
6100 "isStatic": isStatic, 6105 "isStatic": isStatic,
6101 "isFinal": isFinal, 6106 "isFinal": isFinal,
6102 "isConst": isConst, 6107 "isConst": isConst,
6103 "propagatedTypeSlot": propagatedTypeSlot, 6108 "propagatedTypeSlot": propagatedTypeSlot,
6104 "inferredTypeSlot": inferredTypeSlot, 6109 "inferredTypeSlot": inferredTypeSlot,
6105 }; 6110 };
6106 } 6111 }
6107 6112
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/prelink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698