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

Side by Side Diff: pkg/compiler/lib/src/common/backend_api.dart

Issue 2791993002: Fix dart2js warnings and add test to ensure it stays clean. (Closed)
Patch Set: Address comments and fix duplicated library names. Created 3 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/compiler/analysis_options.yaml ('k') | pkg/compiler/lib/src/common_elements.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library dart2js.backend_api; 5 library dart2js.backend_api;
6 6
7 import '../common.dart';
8 import '../common/codegen.dart' show CodegenImpact;
9 import '../common/resolution.dart' show ResolutionImpact; 7 import '../common/resolution.dart' show ResolutionImpact;
10 import '../constants/expressions.dart' show ConstantExpression; 8 import '../constants/expressions.dart' show ConstantExpression;
11 import '../elements/types.dart'; 9 import '../elements/types.dart';
12 import '../elements/resolution_types.dart' 10 import '../elements/resolution_types.dart'
13 show ResolutionDartType, ResolutionInterfaceType; 11 show ResolutionDartType, ResolutionInterfaceType;
14 import '../elements/entities.dart'; 12 import '../elements/entities.dart';
15 import '../enqueue.dart' show ResolutionEnqueuer; 13 import '../enqueue.dart' show ResolutionEnqueuer;
16 import '../serialization/serialization.dart' 14 import '../serialization/serialization.dart'
17 show DeserializerPlugin, SerializerPlugin; 15 show DeserializerPlugin, SerializerPlugin;
18 import '../tree/tree.dart' show Node; 16 import '../tree/tree.dart' show Node;
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 InterfaceType getConstantMapTypeFor(InterfaceType sourceType, 179 InterfaceType getConstantMapTypeFor(InterfaceType sourceType,
182 {bool hasProtoKey: false, bool onlyStringKeys: false}); 180 {bool hasProtoKey: false, bool onlyStringKeys: false});
183 181
184 /// Returns the type of the constant symbol implementation class. 182 /// Returns the type of the constant symbol implementation class.
185 InterfaceType get symbolType; 183 InterfaceType get symbolType;
186 184
187 /// Returns the field of the constant symbol implementation class that holds 185 /// Returns the field of the constant symbol implementation class that holds
188 /// its internal name. 186 /// its internal name.
189 FieldEntity get symbolField; 187 FieldEntity get symbolField;
190 } 188 }
OLDNEW
« no previous file with comments | « pkg/compiler/analysis_options.yaml ('k') | pkg/compiler/lib/src/common_elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698