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

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

Issue 2647043002: Fix hints reported by analyzer. (Closed)
Patch Set: Created 3 years, 11 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 import '../common.dart'; 7 import '../common.dart';
8 import '../common/resolution.dart' show Resolution; 8 import '../common/resolution.dart' show Resolution;
9 import '../compiler.dart' show Compiler;
10 import '../constants/constructors.dart'; 9 import '../constants/constructors.dart';
11 import '../constants/expressions.dart'; 10 import '../constants/expressions.dart';
12 import '../core_types.dart' show CommonElements; 11 import '../core_types.dart' show CommonElements;
13 import '../ordered_typeset.dart' show OrderedTypeSet; 12 import '../ordered_typeset.dart' show OrderedTypeSet;
14 import '../resolution/scope.dart' show Scope; 13 import '../resolution/scope.dart' show Scope;
15 import '../resolution/tree_elements.dart' show TreeElements; 14 import '../resolution/tree_elements.dart' show TreeElements;
16 import '../script.dart'; 15 import '../script.dart';
17 import '../tokens/token.dart' 16 import '../tokens/token.dart'
18 show Token, isUserDefinableOperator, isMinusOperator; 17 show Token, isUserDefinableOperator, isMinusOperator;
19 import '../tree/tree.dart'; 18 import '../tree/tree.dart';
(...skipping 2024 matching lines...) Expand 10 before | Expand all | Expand 10 after
2044 /// by a field. 2043 /// by a field.
2045 bool get isDeclaredByField; 2044 bool get isDeclaredByField;
2046 2045
2047 /// Returns `true` if this member is abstract. 2046 /// Returns `true` if this member is abstract.
2048 bool get isAbstract; 2047 bool get isAbstract;
2049 2048
2050 /// If abstract, [implementation] points to the overridden concrete member, 2049 /// If abstract, [implementation] points to the overridden concrete member,
2051 /// if any. Otherwise [implementation] points to the member itself. 2050 /// if any. Otherwise [implementation] points to the member itself.
2052 Member get implementation; 2051 Member get implementation;
2053 } 2052 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698