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

Side by Side Diff: pkg/compiler/lib/src/elements/elements.dart

Issue 1173403002: dart2js: Fix hints in code base. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Updated to latest revision Created 5 years, 6 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
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 elements; 5 library elements;
6 6
7 7
8 import '../constants/expressions.dart'; 8 import '../constants/expressions.dart';
9 import '../tree/tree.dart'; 9 import '../tree/tree.dart';
10 import '../util/util.dart'; 10 import '../util/util.dart';
11 import '../resolution/resolution.dart'; 11 import '../resolution/resolution.dart';
12 12
13 import '../dart2jslib.dart' show InterfaceType, 13 import '../dart2jslib.dart' show InterfaceType,
14 DartType, 14 DartType,
15 TypeVariableType, 15 TypeVariableType,
16 TypedefType, 16 TypedefType,
17 DualKind, 17 DualKind,
18 MessageKind, 18 MessageKind,
19 DiagnosticListener, 19 DiagnosticListener,
20 Script, 20 Script,
21 FunctionType, 21 FunctionType,
22 Selector, 22 Selector,
23 SourceSpan, 23 SourceSpan,
24 Constant, 24 Constant,
25 Compiler, 25 Compiler,
26 Backend, 26 Backend,
27 isPrivateName; 27 isPrivateName;
28 28
29 import '../dart_types.dart'; 29 import '../dart_types.dart';
30 import '../helpers/helpers.dart';
31 30
32 import '../scanner/scannerlib.dart' show Token, 31 import '../scanner/scannerlib.dart' show Token,
33 isUserDefinableOperator, 32 isUserDefinableOperator,
34 isMinusOperator; 33 isMinusOperator;
35 34
36 import '../ordered_typeset.dart' show OrderedTypeSet; 35 import '../ordered_typeset.dart' show OrderedTypeSet;
37 36
38 import 'visitor.dart' show ElementVisitor; 37 import 'visitor.dart' show ElementVisitor;
39 38
40 part 'names.dart'; 39 part 'names.dart';
(...skipping 1603 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 bool get isDeclaredByField; 1643 bool get isDeclaredByField;
1645 1644
1646 /// Returns `true` if this member is abstract. 1645 /// Returns `true` if this member is abstract.
1647 bool get isAbstract; 1646 bool get isAbstract;
1648 1647
1649 /// If abstract, [implementation] points to the overridden concrete member, 1648 /// If abstract, [implementation] points to the overridden concrete member,
1650 /// if any. Otherwise [implementation] points to the member itself. 1649 /// if any. Otherwise [implementation] points to the member itself.
1651 Member get implementation; 1650 Member get implementation;
1652 } 1651 }
1653 1652
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698