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

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

Issue 1282463002: Reorganize constants/* libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 import '../constants/constructors.dart';
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,
(...skipping 1638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1656 bool get isDeclaredByField; 1656 bool get isDeclaredByField;
1657 1657
1658 /// Returns `true` if this member is abstract. 1658 /// Returns `true` if this member is abstract.
1659 bool get isAbstract; 1659 bool get isAbstract;
1660 1660
1661 /// If abstract, [implementation] points to the overridden concrete member, 1661 /// If abstract, [implementation] points to the overridden concrete member,
1662 /// if any. Otherwise [implementation] points to the member itself. 1662 /// if any. Otherwise [implementation] points to the member itself.
1663 Member get implementation; 1663 Member get implementation;
1664 } 1664 }
1665 1665
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/constants/expressions.dart ('k') | pkg/compiler/lib/src/elements/modelx.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698